User Profile & Activity

Hans Kristian Member
Page
of 69

Hello,

Thank you for your feedback regarding WebGrid control.

You could get to “ColumnSets” section under “RootTable” section.
I attached the screenshot about WebGrid Metro Designer (MetroDesigner_ColumnSets.jpg).

Hope this helps.

Regards,
Hans.

Posted: June 12, 2013 4:12 AM

Hello,

I apologize for the any inconvenience this problem may have caused you.

This problem occurs due to our language localization data for Norwegian language doesn’t complete.
If you don’t mind, could you help us to complete the Norwegian language localization data?

I will provide you two XML file that contain language localization data. Please kindly compare the content of “wglang_nb-NO.xml” file with “default.xml” file and then add the missing tag/data in “wglang_nb-NO.xml” file.
After you complete the content of “wglang_nb-NO.xml” file, please send back the back to us.
We will try to build a new WebGrid assembly with your “wglang_nb-NO.xml” file and then send you the new assembly.

If you want to get result faster, put the new / complete “wglang_nb-NO.xml” file to “C:\Program Files\Intersoft Solutions\WebUI Studio for ASP.NET\CommonLibrary\WebGrid\V8_0_7200\Localization”.

However, you should change / modify your project not use File System and not use SmartWebResources mode. Then set the Localization to “use physical client resources (Classic)”.
For further information how to change language localization.

Thank you very much for valuable feedback and thank you for your help.

Regards,
Hans.

Hello,

I made a simple WebGrid sample; I bind the WebGrid to access data source (Northwind.mdb database and Shippers table).
I set the “ColumnType” property in ShipperID column to "HyperLink".
I also add one ASP.Net button control to do post back process.

The result is the HyperlinkFormatString always works well after I click the button.

Please kindly have review on the sample and please let me know there are some steps or configurations that I missed in this sample.

Regards,
Hans.
Posted: June 10, 2013 12:44 AM
Hello,

Thank you for your questing regarding WebGrid.

There is a topic in Intersoft Community that maybe similar with your current scenario.
Please kindly follow this link below:
http://www.intersoftpt.com/Community/WebGrid/Need-to-move-column-and-its-value-form-one-position-to-another-using-code-behind-c-code/

And please let me know whether that solution works for you or not.


Regards,
Hans.

Posted: June 10, 2013 12:05 AM

Hello,

I have tried to run the WebCombo sample, HyperFastWebComboWithLINQToSQLTechnology.aspx file, in XHTML mode.
I modified the MasterPage from using HTML5 masterpage to XHTML master page.
From:

<%@ Page Language="C#" MasterPageFile="./DefaultMaster.master" AutoEventWireup="true" CodeFile="HyperFastWebComboWithLINQToSQLTechnology.aspx.cs" Inherits="HyperFastWebComboWithLINQToSQLTechnology" Title="Untitled Page" %>

To:

<%@ Page Language="C#" MasterPageFile="./DefaultMasterXHTML.master" AutoEventWireup="true" CodeFile="HyperFastWebComboWithLINQToSQLTechnology.aspx.cs" Inherits="HyperFastWebComboWithLINQToSQLTechnology" Title="Untitled Page" %>

I set the WebCombo’s RenderingMode property to “XHTML”. The result is the sample works fine in IE8, IE9 and IE10.
Please kindly have review on the modified sample to see the result. Just simply add the modified sample to WebCombo solution sample to run the sample.

Could you help me to provide me more detail about your issues? Perhaps the screenshot or the step by step guidance how to reproduce your issue on my end.

Thank you for your help.

Regards,
Hans.

Posted: June 7, 2013 12:14 AM

Hello,

Thank you for your feedback regarding WebCombo.

Basically, Internet Explorer 8 itself doesn’t fully support HTML5 doctype.
So if you want to run WebCombo 6 with rendering mode HTML5 in IE 8, it will make some issue occur.

Please kindly try to run the sample in IE 9 or IE 10 that fully support HTML5 doctype.

I apologize for any inconvenience this problem may have caused you.

Regards,
Hans.

Hello,

I have modified one of WebCombo sample, EntryMode_AutoComplete.aspx page.
I add a work around in OnLostFocus client side event.
I use SetText() WebCombo method to prevent the reset problem.

Please kindly have review on the modified sample to see the result.
To run the sample just simply adds the file to WebCombo Sample solution.

Hope this helps.

Regards,
Hans.

Posted: June 3, 2013 3:44 AM

Hello,

Thank you for your question regarding WebRibbon.

Here’s I attach the simple example sample, how to add a new tab and item.
Please kindly have review on the sample.

Hope this helps.

Regards,
Hans.

Posted: May 30, 2013 4:34 AM
Hello,

Thank you for your question regarding WebGrid.

Actually, you could read more information about Client-side Binding in WebGrid documentation Client-side Binding section. In the WebGrid documentation, written information about how Client-side Binding works, benefits and limitations of WebGrid Client Binding.
I can get the information about the differences with Server-side Binding.

You could access WebGrid documentation from here or you could download the documentation from this link.

Intersoft has blog that talking about client footprint optimization that perhaps can help you. Here’s the link.

Hope this helps.

Regards,
Hans.

Hello,

Thank you for your question.

I have made a simple WebCalender sample to select all Sunday and Saturday on this month.
I add some validation javascript code in OnAfterRender client side event.
I check all dates in this month and add all Sunday and Saturday to SelectedDates collection.
Here the example snippet javascript code, how I select all Sunday and Saturday:

function OnAfterRender(controlId, calendarType) {    var WebCalendar1 = ISGetObject(controlId);
    var calendar = WebCalendar1.Calendars[0];
    var month = calendar.Month;
    var year = calendar.Year;
    sundays(year, (month - 1));
    return true;
}
function sundays(year, month) {
    var WebCalendar1 = ISGetObject("WebCalendar1");
    WebCalendar1.SelectedDates.Clear();
    var day = 1;
    var counter = 0;
    var date = new Date(year, month, day);
    while (date.getMonth() === month) {
        if (date.getDay() === 0 || date.getDay() === 6) { // Sun=0, Mon=1, Tue=2, etc.
            //To add the date to SelectedDate collection
            WebCalendar1.SelectedDates.Add(new WebCalendarSelectedDates(date));
            WebCalendar1.SelectedDate = date;
        }
        day++;
        date = new Date(year, month, day);
    }
}

Please kindly also have reviews on my sample to see the result and let me know your response.

Regards,
Hans.

All times are GMT -5. The time now is 9:32 PM.
Previous Next