Hi, i've modified LinkManager Dialog by adding a checkBox like that
and related javascript code to handle it.
But i have a problem with localize the label text.
Can i access to localization[] array to add custom strings?
Or are there any other solution to localize my labels?
I've also tried to do something like that:
With this code the dialog window is opened and shows nothing but the loading image.
Any suggestion??
<td class="reLabelCell"> <label for="LinkCheckTrace" class="reDialogLabel"> <span> <script type="text/javascript">document.write(localization["CheckTrace"]);</script> </span> </label></td><td class="reControlCell"> <asp:CheckBox ID="LinkCheckTrace" runat="server" /></td>But i have a problem with localize the label text.
Can i access to localization[] array to add custom strings?
Or are there any other solution to localize my labels?
I've also tried to do something like that:
<td class="reLabelCell"> <label for="LinkCheckTrace" class="reDialogLabel"> <span> <%$ Resources: CheckTrace%> </span> </label></td><td class="reControlCell"> <asp:CheckBox ID="LinkCheckTrace" runat="server" /></td>Any suggestion??