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,
You could get the latest version of our control, by downloading from our website (http://www.intersoftpt.com/WebUIStudio) or from Intersoft Developer Network at http://dev2.intersoftpt.com/
At Intersoft Developer Network, first, you need to login using your credential. Next, please find 'My Components' section and the select the ‘Trial’ tab.
Hope this helps. Thank you.Regards,Hans.
I’m sorry for this misunderstanding.You can still get all columns even if the column is hidden.I made a sample that maybe similar with your scenario.In my sample, I use WebButton to get all columns name and display it to TextBox.Here’s the snippet code in OnClientClick client side event:
function WebButton1_OnClientClick(controlId, parameter) { var WebButton1 = ISGetObject(controlId); var WebGrid1 = ISGetObject("WebGrid1"); var TextBox1 = document.getElementById("TextBox1"); var columnLenght = WebGrid1.RootTable.Columns.length; for (var i = 0; i < columnLenght; i++) { var columnName = WebGrid1.RootTable.Columns[i].Name; var columnVisibility = WebGrid1.RootTable.Columns[i].Visible; TextBox1.value = TextBox1.value + "Column Name: " + columnName + ";"; TextBox1.value = TextBox1.value + " Column Visibility: " + columnVisibility + "; \n"; } return true; }
I attached my sample as well.
Hope this helps. Thank you.
Regrads,Hans.
To get the hidden column value, you could use “HiddenDataMember” column property of WebGrid.I made a sample to get the hidden column value. In my sample, I use Northwind.mdb database and Shipper table.
I set visibility of Phone column to “False”.In ShipperID column, I set HiddenDataMember property to “Phone”.
I use OnRowSelect client side event to get the hidden column value, then set the value to TextBox
Here’s the snippet code in OnRowSelect client side event:
function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) { var WebGrid1 = ISGetObject(controlId); var TextBox1 = document.getElementById("TextBox1"); //get HiddenDataMember TextBox1.value = WebGrid1.GetSelectedObject().GetRowObject().GetCells().GetNamedItem("ShipperID").GetElement().attributes["Phone"].value; return true; }
I attached the sample as well.
Hope this helps. Thank you
Regards,Hans.
I’m sorry for the inconvenience.Are you using SmartWebResource in your project?If yes, please try to add “ISNet.WebUI.Resources.dll” assembly in your bin folder.If no, please try to use SmartWebResource.
And let me know if the issue still persist or not.
Hi,
I’m sorry, but I can’t ensure the date of the next release is going to be available.Please bear with me while waiting for this upcoming June release.
Thank you for understanding.
Yes. we are going to be released in this June.I’ll let you know if there is any updates about this release.
Thank you for your understanding.
I apologize for any inconveniences this problem may have caused you. I've incorrectly send a sample in my last post. Therefore, please find the correct sample attached in this post.
Thank you for understanding
I’m really sorry for the inconvenience.But unfortunately, I have yet to get any update from our developer team about this issue.
However I’ll let you know if there is any update for this issue.
I’m really sorry for the inconvenience.But unfortunately, I can’t ensure the exact time when the next release is going to be available.And I couldn’t tell whether the issue will be fixed in the next release as well.
Thank you for your understanding & patience.
I’m sorry for the inconvenience.
Please try to run my sample and let me know the result of my sample.
Thank you.
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