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 the reply.Based on your description, I try to have a review “FirstExperience.aspx” page from WebCombo Solution Samples.In that page, there is a WebCombo (wcReportsTo WebCombo) that using Multiple Selection feature. Before I run the page, I set the “AllowNotInListText” property to “True”.Unfortunately, the result is the tab key works fine on my end. I can focus to the next control.I attached the video regarding the result on my end.Please kindly have review on the video and please let me know your response.Is there any information that I have to know, so that I can reproduce your issue on my end?Thank you.Regards,Hans K.
<!DOCTYPE html><html> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <ISWebCombo:WebCombo ID="WebCombo1" runat="server" RenderingMode="HTML5"> </ISWebCombo:WebCombo> </form> </body> </html>
Hope this help.Regards,Hans K.
Hello,I’m glad to hear that you have resolved the get cell template value scenario.Regarding your CalendarCombo issue, since this issue was different with the first one, please kindly create a new thread for this issue.While creating the new thread, please kindly provide us more information regarding this CalendarCombo issue.For example, what is your webpage DOCTYPE?What is your WebGrid configuration? What is your current WebGrid assembly version?And if possible, could you provide the simple working sample regarding this issue.Thank you very much for your help.Regards,Hans K.
Hello,Thank you for the reply.If you want to get the checked row and get row object from the child table, you should modify the code.I have a WebGrid page with hierarchical mode and checkbox column in child table.Like in the WebGrid page in my prior post, there is an ASP.Net button control to get the checked row.Here’s the snippet code to get the checked row in button click event:
protected void Button1_Click(object sender, EventArgs e){ ArrayList checkedRows = WebGrid1.RootTable.ChildTables.GetNamedItem("Orders").GetCheckedRows(); string text = "Checked rows: " + checkedRows.Count + "\n\n"; foreach (object keyValue in checkedRows) { text += WebGrid1.RootTable.ChildTables.GetNamedItem("Orders").Rows.GetRowByKeyValue(keyValue.ToString()).Cells[3].Value.ToString() + "\n"; } TextBox1.Text = text; }
To get the row object from child table, you should set the “RestoreExpandedChildRows” property, under “LayoutSettings” tag, to “True”.Please kindly have review on the attached page to see result. To run the page, you could add the page to the WebGrid Solution Samples.Hope this helps.Regards,Hans K.
Hello,Thank you for the question regarding Crosslight.Basically, Crosslight has yet to provide cross platform styling feature.However, you could customize your component style on each view level.In iOS platform, it could be done in ViewController level; in Android platform, in Activity or Fragment level; in Windows Phone 8 and Windows 8, in Page level.Yes, you also can customize your component style programmatically.Crosslight developer team has provided the sample regarding this scenario.You could check out the sample from this link below:http://git.intersoftpt.com/projects/CROS/repos/samples/browse/DrawerSamplesThis snippet example code below is how to re-styling in ViewController in iOS platform.(http://git.intersoftpt.com/projects/CROS/repos/samples/browse/DrawerSamples/FacebookStyle/DrawerSamples.Facebook.iOS/ViewControllers/MainDrawerViewController.cs)You could customize your own style in InitializeView() event.
protected override void InitializeView(){ base.InitializeView(); var searchButton = new UIBarButtonItem(UIBarButtonSystemItem.Search); // handle searchButton's Clicked event, or assign a command to be called in ViewModel. // add a custom left button item to our view this.LeftButtonItem = searchButton; // customize the right button item which automatically open/close the drawer this.RightButtonItem = new UIBarButtonItem(); this.RightButtonItem.Image = UIImage.FromBundle("UserList.png"); }
Hope this helps.Regards,Hans K.
Hello,Perhaps you could you use “OnFilterContextMenu” client side event.This event will be invoked when the column filter's context menu is about to be displayed.Here’s the example snippet code how to define “OnFilterContextMenu” (JavaScript) function:
function WebGrid1_OnFilterContextMenu(controlId, col, menu, location){ alert(col.Name); return true; }
I attached a WebGrid page that using “OnFilterContextMenu” client side event as well.Regards,Hans K.
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