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
You are welcome, John. Should you find any other difficulties, we are here to help.
Hello again John,
I've discussed your issue with our development team regarding your question about getting all the data in WebGrid without having to load all the rows, and unfortunately there's no way to do this at the moment.
However, you could do a client data binding through a WebService and get all the WebGrid data from the JavaScript for your JSON.
Hope this helps.
Best Regards,Erwin Sanders
Hi Andre,
This issue's been fixed. You can try it out by applying the latest hotfix which is attached below.
To apply the hotfix, see the following instructions:
1. Extract the hotfix file, for example : WebDesktopNET5_0_7200_46.zip.
2. Copy the entire contents of \bin folder and paste it to [Installation Folder]\Intersoft Solutions\WebUI Studio for ASP.NET\WebDesktop.NET 5.0\Bin.
3. Copy the entire contents of \script folder and paste it to [Installation Folder]\Intersoft Solutions\WebUI Studio for ASP.NET\CommonLibrary\WebDesktop\V5_0_7200 folder.
Also, don't forget to renew the assemblies in your project to see the result.
Hi John,
Sorry for the late reply. Based on your questions, I made a sample that has a button that gets the desired data you requested. The code behind is using c# though, but it does the job. Feel free to evaluate on the sample.
Hi,
Seems like you double posted. I replied to your other thread (http://www.intersoftsolutions.com/Community/Lounge/How-to-automaticaly-select-Newly-added-node-when-Autopostback-setting-for-NodeAdd-also-true/).
Best Regards,Erwin
Hi Shailendra,
Apologize for the late reply. I found a way to select a node after adding it to WebTreeView while setting the AutoPostBack NodeAdd property to true. You were on the right track by using the Select() method, however I may need further information on how you use it.
Anyway, I made a simple sample regarding your issue. There are two ways to do this:1. Client Side: Call the Select() method from ClientSideEvents property via JavaScript. (See example below)
//webtreeview control
<ISWebTreeView:WebTreeView runat="server" AllowAddNode="True">
<ClientSideEvents OnNodeAdd="Node_Add" />
<AutoPostBackSettings OnNodeAdd="true" />
</ISWebTreeView:WebTreeView>
//javascript
function Node_Add(a, newNode, c) { var treeView = ISGetObject("WebTreeView1"); newNode.Select(); }
2. Server Side: Call the Select() method from WebTreeView's OnNodeAdd property. (See example below)
<ISWebTreeView:WebTreeView OnNodeAdd="WebTreeView1_NodeAdd" AllowAddNode="True"> ... <AutoPostBackSettings OnNodeAdd="true" /> </ISWebTreeView:WebTreeView>
//code behind
protected void WebTreeView1_NodeAdd(object sender, ISNet.WebUI.WebTreeView.WebTreeViewNodeEventArgs e) { e.Node.Select(); }
You could download the sample from the attachment below, feel free to evaluate. Hope this helps.
Seems like you double posted. I replied to your other thread (http://www.intersoftsolutions.com/Community/WebTreeView/Change-Web-treeview-Node-Text-Color-at-Runtime/).
Currently WebTreeView doesn't have a function to be refreshed from ClientSide. Would you tell me on what you're trying to achieve? Maybe we could give you another way to solve your problems.
Best Regards, Erwin
Sorry for the late reply. The value of CustomStyle property needs to be a css rule, it can't be a class like you demonstrated. Here's an example on how to use CustomStyle properly:
e.Node.CustomStyle = "color: red; font-size: 18pt;";
Hi Dimitris,
I think it would be easier for me to solve the problem by replicating the issue. Would you please tell me step by step on how to reproduce the problem? I recorded my attempt to replicate the issue but still no luck (take a look at the attachment below).
In the meantime, you might want to try our latest version which is WebGrid 10. Here's the link to request trial: http://intersoftsolutions.com/requesttrial
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