Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views

Did anyone else miss the October 25th Webinar?  I reserved a seat but have not gotten anything beyond the "you reserved a seat" message.  Everything I have indicates it should have taken place 1 hour ago but I have not gotten any URL to connect to or any login information.

 

Hopefully we can see the replay later???

Marin Bratanov
Telerik team
 answered on 26 Oct 2016
1 answer
151 views

We have multiple applications that are separate but related.

Each application has multiple instances of controls that we would like to persist the state for in SQL.

When storing this is it just using the control ID to uniquely identify the settings for that particular control?

Essentially, do I need to worry about naming collisions across applications and store a separate record for each application?

Obviously this will inform the table schema and the implementation of the provider that are needed.

Kostadin
Telerik team
 answered on 26 Oct 2016
5 answers
341 views

I have a RadFilter and select the function "equals" and the text "Peru" and when I press the Apply button, no results found. But radgrid column exists in the text column country "Perú" with accent, I tried putting the property: <GroupingSettings CaseSensitive = "false"> </ GroupingSettings>, but only ignores case sensitive, I need to omit the accents.
Attached image.

Please any advice?

 PDT:

In basic search I succeeded with SP where the condition COLLATE establish Latin1_General_CI_AI, I need to achieve the same result with RadFilter.
Attached image: Search Search basic.png and basic sp.png​

Thanks.
Isabel
Top achievements
Rank 1
 answered on 26 Oct 2016
1 answer
145 views

Hello,

 

I am trying to export the OrgChart to pdf, I have followed the tips in previous posts, my chart contains Arabic characters which printed wrongly or not printed at all in pdf like in attachments.

 

any Idea how to solve this please?

 

Thanks

 

 

 

 

Dimitar
Telerik team
 answered on 26 Oct 2016
1 answer
147 views

In a loop, I Can update the status for every record. So i need to show the status of record after the every single record updated. These should done when the button is clicked.
When i click start button it should updated the every record status in loop. Then i need to show every record status for every updates in UI.

protected void btnstart_Click(object sender, EventArgs e)
    {
        string pageId = string.Empty;
        divMsg.Style.Add("display", "none");
        divMsg.Attributes.Add("class", "");
        try
        {
 
            DataSet DsPages = (DataSet)ViewState["SitePages"];
            bool IsSucess = false, IsError = false;
            string SqlQuery = string.Empty;
            if (DsPages.Tables[0].Rows.Count > 0)
            {
                for (int i = 0; i < DsPages.Tables[0].Rows.Count; i++)
                {
                    try
                    {
                        htmlClean(DsPages.Tables[0].Rows[i]["contents"].ToString());
                        pageId = DsPages.Tables[0].Rows[i]["ID"].ToString();
                        SqlQuery = TransformXMLToHTML(htmldesign.InnerText, txtPageTypeXslt.InnerText.Trim());
                        SqlQuery = SqlQuery.Replace("<?xml version=\"1.0\" encoding=\"utf-16\"?>", "");
                        PagesBL objPage = new PagesBL(1);
                        if (!string.IsNullOrEmpty(SqlQuery))
                        {
                            if (objPage.ExecuteQuery(SqlQuery) > 0)
                            {
                                PagesBL objPageBL = new PagesBL();
                                objPageBL.UpdateLastExtract(DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss"), DsPages.Tables[0].Rows[i]["ID"].ToString());                               
                                IsSucess = true;
                            }
 
                        }
                    }
                    catch (Exception ex)
                    {
                        IsError = true;
                        string Error = ex.Message;
                        PagesBL objPageBL = new PagesBL();
                        Errors objErr = new Errors();
                        objErr.PageID = pageId;
                        objErr.ErrorOccuredOn = DateTime.Now;
                        objErr.ErrorText = ex.Message;
                        objErr.SQLError = ex.Source == ".Net SqlClient Data Provider" ? SqlQuery : ex.Message;
                        objErr.ErrorStatus = 1; //1=
                        objPageBL.InsertErrors(objErr);
                        // divMsg.Attributes.Add("class", "alert alert-danger");
                        // divMsg.InnerText = "Extract process complete with few error.Please check the error list";
                    }
                }
                if (IsSucess && !IsError)
                {
                    Session["Complete"] = "True";
                    divMsg.Style.Add("display", "block");
                    divMsg.Attributes.Add("class", "alert alert-success");
                    divMsg.InnerText = "Extract process completed.";
                }
            }
        }
        catch (Exception ex)
        {
 
        }
}
Marin Bratanov
Telerik team
 answered on 26 Oct 2016
15 answers
324 views

Hi,

I'm working on a legacy ASP.NET WebForms project and I am to add accessibility to the project.

My predecessor already tried to add accessibility by manually assigning an access key to the AccessKey property of some of the PanelBar's RadPanelItemCollection elements (see attachment #1).

 

 

Plamen
Telerik team
 answered on 26 Oct 2016
1 answer
88 views

Hello,
I am using a RadGrid with multiple columns which can be edited (BatchEdit like excel).

<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" AutoGenerateColumns="False"GridLines="Both"OnNeedDataSource="RadGrid1_NeedDataSource" AllowAutomaticInserts="True" AllowAutomaticUpdates="True"AllowAutomaticDeletes="True">
            <ItemStyle Wrap="false" />
            <MasterTableView TableLayout="Fixed" NoMasterRecordsText="" ShowFooter="true" EditMode="Batch">
                ...
            </MasterTableView>
</telerik:RadGrid>


Datasource of RadGrid is ObjectDataSource

<asp:ObjectDataSource ID="TestSource" runat="server" TypeName="TestClass" SelectMethod="GetAllItems">
      <UpdateParameters>
                <asp:Parameter Name="Name" Type="String" />
                <asp:Parameter Name="LastName" Type="String" />
                <asp:Parameter Name="BirthData" Type="DateTime" />
      </UpdateParameters>
</asp:ObjectDataSource>


On OnNeedDataSource event I'm setting Id of ObjectDataSource to RadGrid.DataSourceId.

protected void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
        RadGrid1.DataSourceID = "TestSource";
}


In current Page I have also button "Send email" send rad gird inserted values.
<asp:Button ID="SendEmail" OnClick="SendEmail_Click" Text="Send" runat="server" />

Problem is that on SendEmail_Click DataSource is null. But I want to get newly changed DataSource.

protected void SendEmail_Click(object sender, EventArgs e)
{
        RadGrid1.Rebind();
        // RadGrid1.Datasource is null
}

 

How I can solve this problem?

 

Thanks,

Daler

Pavlina
Telerik team
 answered on 25 Oct 2016
5 answers
208 views
I have an RadGrid with an Editform template that contains a RadAjaxPanel control with a sub-gird inside panel. I am using the RadAjaxPanel to help eliminate the page refresh when performing updates to the data inside the editform template.  I use a RadAjaxLoadingPanel with all default values so that when the sub-grid is updated the loading image shows and the whole page will not refresh.  However, I noticed that if I refresh or rebind the sub-grid it causes the parent grid to refresh as well.  So the setup looks something like this.

<telerik:RadGrid ID="MyParentGrid ... >
   {Databound Columns}
   ...
  <EditFormSettings EditFormType="Template" EditColumn-HeaderButtonType="LinkButton">
      <EditColumn UniqueName="EditCommandColumn1" FilterControlAltText="Filter EditCommandColumn1 column"></EditColumn>
                <FormTemplate> 
                   <telerik:RadAjaxPanel ID="EditArea" runat="server" Visible='<%# IIf((TypeOf(Container) is GridEditFormInsertItem), "false", "true") %>'  BorderStyle="Solid" BorderWidth="1px" LoadingPanelID="RadAjaxLoadingPanel1"> 
                                          
                                           <telerik:RadGrid ID="MyChildGrid" ... >
                                           </telerik:RadGrid>

                   </telerik:RadAjaxPanel...>
                    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default">
                    </telerik:RadAjaxLoadingPanel>
                </FormTemplate> 
         </EditFormSettings>
</telerik:RadGrid>

Is there something I need to do to isolate the update of the sub-grid from the parent grid?  Do I need an AjaxManager inside the EditForm Template?

Thanks in Advance,

Jeff
Viktor Tachev
Telerik team
 answered on 25 Oct 2016
2 answers
79 views

Hello, 

I have a problem where I pull data from a huge database (over 140 000 entries) and have taken care to do my own pagination to limit loading time for my users.  

Basically, on pagination changes (next, prev, click on number etc.) I query my own 20 rows (which is pagesize) to fill up only what the user see and not pull tens of thousands of rows each time which would slow down the user's experience. 

So my problem is, if I do it this way, my table only shows my 20 rows and not whats available to the user. 

 

I have a line in my codebehind that returns the number of results I would like to tell RadGrid is available: 

var querySize = bllUsNet.ObtenirTout().Count;

 

Is there a way to "Trick" Radgrid into thinking there is that many entries but only return 20 ?

 

If anyone has an idea of a better title for this thread, I had a hard time to find one :)

 

Thanks

Rolland
Top achievements
Rank 1
 answered on 25 Oct 2016
14 answers
342 views
I am using RadEditor i have a problem, when <a> tag is not closed then its rendering unwanted duplicate tags.

Before:
<a class="inorya" href="#menu" target="blank"> click to go</a></p>

After:
<p>
<a class="inorya" href="#menu" target="blank"> click to go</p>

Expected Output:

<a class="inorya" href="#menu" target="blank"> click to go</a></p>

when i change to some other view say design or preview and again after returning to html i get

<p>
<a class="inorya" href="#menu" target="blank"> click to go</a></p>
<a class="inorya" href="#menu" target="blank">
<p>

Thanks in advance
Ianko
Telerik team
 answered on 25 Oct 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?