HI,
<telerik:GridHyperLinkColumn HeaderStyle-Width="160px" DataTextFormatString="'{0}'"
ItemStyle-HorizontalAlign="Center" DataNavigateUrlFields="ItemCode" UniqueName="ItemCode"
DataNavigateUrlFormatString="javascript:OpenItemCode('{0}');" HeaderText="Item Code"
DataTextField="ItemCode" />
This is a column in my directly bound grid.
This form has been opened from menu
Now i want to open another form from the menu using the above hyperlink
the following is the script for the code mentioned above
function OpenItemCode(index)
{
var cmbcolItemNo = index;
if (cmbcolItemNo != "")
{
GetRadWindow().BrowserWindow.OpenWindow('Warehousing/frmItemMaster.aspx?ItemCode=' + cmbcolItemNo, "ItemMaster", "Images/square.png");
}
}
this code works perfectly in IE but does not work in Chrome
Please give me some suggestion to solve this problem
<telerik:GridHyperLinkColumn HeaderStyle-Width="160px" DataTextFormatString="'{0}'"
ItemStyle-HorizontalAlign="Center" DataNavigateUrlFields="ItemCode" UniqueName="ItemCode"
DataNavigateUrlFormatString="javascript:OpenItemCode('{0}');" HeaderText="Item Code"
DataTextField="ItemCode" />
This is a column in my directly bound grid.
This form has been opened from menu
Now i want to open another form from the menu using the above hyperlink
the following is the script for the code mentioned above
function OpenItemCode(index)
{
var cmbcolItemNo = index;
if (cmbcolItemNo != "")
{
GetRadWindow().BrowserWindow.OpenWindow('Warehousing/frmItemMaster.aspx?ItemCode=' + cmbcolItemNo, "ItemMaster", "Images/square.png");
}
}
this code works perfectly in IE but does not work in Chrome
Please give me some suggestion to solve this problem