Hello, I have some content which needs to be extracted as a PDF and right now I'm able to achieve this by Using RadEditor Export to PDF functionality.
Today We have observed that the extracted PDF is not getting displayed in Windows 8 PDF reader. Is it anything that can be fixed from the Editor itself ?

var
radGrid = $find("<%= rg.ClientID %>");
var view = radGrid.get_masterTableView();
view.set_dataSource(results);
view.dataBind();
I tapped into RowDataBound client event so that I may be able to bind it, but I don't know how I can bind to the label in the template. The issue is, on the server side, I bind an empty array on load server side, so that the mastertableview gets created:
rg.DataSource = new object[] { };
rg.DataBind();
BUt, the no records template appears, and not my template, so I don't know how to bind to the labels....
Any advice would help.
Thanks.

<telerik:RadMaskedTextBox ID="txtWorkNumber" runat="server" CssClass="input_text" Skin="" EnableEmbeddedSkins="false" Width="88%" ></telerik:RadMaskedTextBox>strMask = "###-###-####"strDMask = "(###) ###-####" txtWorkNumber.Mask = strMask txtWorkNumber.DisplayMask = strDMasktxtWorkNumber.TextWithLiterals = "--"