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
I have already consulted with the developer regarding this issue andcurrently , WebTextEditor has not supported shared folder for Media Gallery. Our developer has considered this issue and will try implementing the feature in the future release of WebTextEditor.
I have already consulted with the developer regarding this issue and currently , WebTextEditor has not supported shared folder for Media Gallery. Our developer has considered this issue and will try implementing the feature in the future release of WebTextEditor.
By default when we use "Group By This Field" the grouped column will be hidden, so it will not be possible to use "Ungroup This Field" without showing the Group box.
However we already have a property to show the column even if it is grouped, please set the HideColumnsWhenGrouped property to no under LayoutSettings. After showing the grouped column in the WebGrid header the option "Ungroup This Field" will be available for the grouped column
Tested the issue using the scenario you described and we still could not replicate the issue in our environment.
Our developer suggest installing Adobe Acrobat in the IIS machine so the machine will have a default printer set up. This workaround was given to a user with similar issue and he issue was solved after installing Adobe Acrobat.
We are very sorry, however there is a mistake in our sample and docs for the key, it should be written as
<add key="ISNet.WebUI.WebTextEditor.ContextStorage" value="FileServer"/><add key="ISNet.WebUI.WebTextEditor.ContextStorageFileServer" value="path=\\Server\ContextUploadStorage"/>
instead of WebFileUploader.
After using WebTextEditor, we do not encounter any issue in our environment.
The reported issue is caused because of a sample issue. Using the default sample from 2009 R1 SP1 should fixed this issue.
Attached is the sample extracted from 2009 R1 SP1
In order to retrieve the hyperlink using Javascript you will need to access the hyperlink cell element and use the href property.
Here is a snippet to retrieve the hyperlink during onclick event of the hyperlink cell. The snippet will show you how to use the passed value and WebGrid selected object to accomplish this goal and bind the onclick event during initializerow server side event.
protected void grdObj_InitializeRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e){ if (e.Row.Type == ISNet.WebUI.WebGrid.RowType.Record) { string hypFormatString = "test.aspx?val=" + e.Row.Cells.GetNamedItem("value").Text; e.Row.Cells.GetNamedItem("url").Column.HyperlinkFormatString = hypFormatString; e.Row.Cells.GetNamedItem("url").Column.HyperlinkTarget = HyperlinkTarget.Blank; string customObjectAttributes = " onclick = \"DoClick(this)\""; e.Row.Cells.GetNamedItem("url").CustomObjectAttributes = customObjectAttributes; }}
function DoClick(val) { var grid = ISGetObject("grdObj"); var selectedCell = grid.GetSelectedObject().GetRowObject().GetCell('url'); var href = selectedCell.CellElement.getElementsByTagName('a')[0].href; alert(val.href + " \r\n" + href);}
Just as James explained, in order to modify the left padding usingthe row style you will need to use CustomRules property and !important.
You could retireve or set the HyperlinkFormatString from the Column property of the WeGrid. Here is a snippet in order to retrieve the HyperlinkFormatString from OrderID column:
grdObj.RootTable.Columns.GetNamedItem("OrderID").HyperlinkFormatString
The issue has been sucessfully replicated in our environment using thesteps you describe. A bug report, bug #408, has been submitted to our developer. We will inform you if there is any update or progresss regarding this issue.
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