User Profile & Activity

Glenn Layaar Support
Page
of 99
Posted: September 16, 2009 6:44 AM

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.

Posted: September 15, 2009 10:42 PM

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

Posted: September 15, 2009 5:10 AM

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.

Posted: September 15, 2009 1:39 AM

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

Posted: September 14, 2009 10:29 PM

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);
}



Posted: September 14, 2009 1:08 AM

Just as James explained, in order to modify the left padding usingthe row style you will need to use CustomRules property and !important.

The !important is needed to override the default padding in WebGrid.
Posted: September 13, 2009 11:44 PM

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


Posted: September 13, 2009 11:31 PM

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.

All times are GMT -5. The time now is 11:45 AM.
Previous Next