iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
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.
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 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.
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.
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.
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.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname