Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
402 views

#1.My issue: I am using telrick image editor in my aspx web page.It is not loading .tiff/.tif images.
  so am not able to Edit .tiff/.tif images in my editor.

#2.I haven't see the doc for the supported file formats by telrik radimage editor.
     I have go through the Dev docs.But the are used only(jpg, bmp, png, gif). Any one have any idea.

#3.I need a Dev doc clearly specify the list of supported image format by telrik image editor

Arun
Top achievements
Rank 1
 answered on 25 Jun 2013
7 answers
164 views
I was looking forward to seeing some changes to the ODataDataSource - Filtering, Sorting and Paging with RadGrid demo after this latest update to fix some glitches.  However, this demo and two of the others are now broken and have been down for several days.  The service on odata.org seems to have moved.  Using Fiddler on the demo page, I get:

HTTP/1.1 302 Found
Connection: Keep-Alive
Content-Length: 321
Date: Tue, 18 Jun 2013 19:26:16 GMT
Location: /(S(1z3r2a0jbjtlcjtx4j00pwta))/Northwind/Northwind.svc/Orders?$callback=jQuery19107677443233304048_1371583576801&%24format=json&%24inlinecount=allpages&%24top=20&%24filter=&%24orderby=
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET
Access-Control-Allow-Headers: Accept, Origin, Content-Type, MaxDataServiceVersion
Access-Control-Expose-Headers: DataServiceVersion
 
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/(S(1z3r2a0jbjtlcjtx4j00pwta))/Northwind/Northwind.svc/Orders?$callback=jQuery19107677443233304048_1371583576801&%24format=json&%24inlinecount=allpages&%24top=20&%24filter=&%24orderby=">here</a>.</h2>
</body></html>
Kate
Telerik team
 answered on 25 Jun 2013
4 answers
445 views
Hello - we are using the latest download Version=2013.2.611.40

I am trying to use the RadAutoCompleteBox with the control defined like this:
<telerik:RadAutoCompleteBox ID="racFromUser" runat="server"
                Width="250" DropDownHeight="150" DropDownWidth="250"
                TextSettings-SelectionMode="Single"
                InputType="Token"
>
</telerik:RadAutoCompleteBox>

Issues:
1) The control is not rendering any colors or icons.  The box & the dropdown is completly transparent.  The dropdown does not hide the junk on the page behind the drop down, so that the list in the drop down get mingled with whatever it is dropping down over making it almost impossible to read the contents of the drop down.

2) The control allows multible items to be slected even though Single selection mode is set in wither token or text mode.

3) In token mode no red x is displayed to delete a token ( the space is still there and hover text still activates )



Magdalena
Telerik team
 answered on 25 Jun 2013
3 answers
411 views
I'm using SelectedDate from the RadCalendar to display local events from a database using a listview and sqldatasource.  It works fine unless I click the same date twice.  The SelectedDate is then set to 1/1/0001 12:00:00 AM and I get the error "SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM".

I read that selecting one date causes the previously selected date to become unselected, so I understand why it's happening, I just can't find a workaround.  

Is there a way to make the currently selected date inactive (unclickable)?  Or, can I check if the user selected the same date?

I tried using Calendar1_SelectionChanged but can't find a way to get the SelectedDate which is really unselected.  The FocusedDate is set to today's date, so I can't use it.

<telerik:RadCalendar ID="Calendar1" runat="server" EnableMultiSelect="false" ShowRowHeaders="false" AutoPostBack="true" Skin="MetroTouch" RenderMode="Lightweight"> </telerik:RadCalendar>
 
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:MyConnString %>">
    <SelectParameters>
        <asp:ControlParameter ControlID="Calendar1" Name="calendar1" PropertyName="SelectedDate" />
     </SelectParameters>
</asp:SqlDataSource>


Shinu
Top achievements
Rank 2
 answered on 25 Jun 2013
5 answers
124 views
Hi All

I am in the process of developing some functionality that uses the RadList and RadWindow.

The requirement is....

When an item is selected in the List control I need to open a RadWindow to display and edit the selected record.

Once editing completed close the Window and then the List control to be refreshed...

Anyone have any pointers on how to achieve this?

Any help greatly apprecaited.

Thanks

Eyup
Telerik team
 answered on 25 Jun 2013
3 answers
80 views
Hallo,

I recently upgraded from 2012.3.xx.35 to Telerik 2013.2.XX.35 and since then i have a problem with my Grid. 
After selecting a row the with of the header and item colums do not match any longer. I think what happens is, is that the header is showing an new "ExpandColumn" whilst the item-part doesnt. Could that be?

The attached screenshot explains what is happeing on row-selection.
please keep in mind that this was working fine when using Telerik 2012.3.xx.35 - dlls.

Searching for a while i found out that it does partially work when setting "UseStaticHeaders" = false  and TalbeLayout="Auto". This way the column with of header and item stay equal but are different than before selecting (where the widh is defined delaratively)

please help.
Michael
Top achievements
Rank 1
 answered on 25 Jun 2013
8 answers
683 views
Hello 

I am using a gridview which is having GridClientSelectColumn.
here checkbox value is not persistent in postback 
in radgrid i am using EnablePostBackOnRowClick="true" .
reason  why i am using  EnablePostBackOnRowClick="true" is 
1.when ever user select the checkbox i need to show the data in asp control DetailsView 
if i am not setting EnablePostBackOnRowClick="true" i am unable to show the data in DetailsView 
Here user can select multipul checkboxes
Fallowing code snippet i am using 
<telerik:RadGrid runat="server" ID="radgvInbox"  AutoGenerateColumns="False"  DataSourceID="LinqDataSource1"
            AllowMultiRowSelection="true"    OnItemCommand="radgrid1_ItemCommand" OnPreRender="radgrid1_PreRender"  >
              
              <ClientSettings  Selecting-AllowRowSelect="true" EnablePostBackOnRowClick="true" AllowDragToGroup="true"  EnableRowHoverStyle="true" ClientEvents-OnRowSelected="onGridRowSelected">
                 <Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" />
               </ClientSettings>
protected void radgrid1_ItemCommand(object source, GridCommandEventArgs e)
 {
     ArrayList selectedItems;
     if (Session["selectedItems"] == null)
     {
         selectedItems = new ArrayList();
     }
     else
     {
         selectedItems = (ArrayList)Session["selectedItems"];
     }
     if (e.CommandName == RadGrid.SelectCommandName &&
         e.Item is GridDataItem)
     {
         GridDataItem dataItem = (GridDataItem)e.Item;
         string MessageID = dataItem.OwnerTableView.DataKeyValues[dataItem.ItemIndex]["MessageID"].ToString();
         selectedItems.Add(MessageID);
         Session["selectedItems"] = selectedItems;
     }
     if (e.CommandName == RadGrid.DeselectCommandName && e.Item is GridDataItem)
     {
         GridDataItem dataItem = (GridDataItem)e.Item;
         string MessageID = dataItem.OwnerTableView.DataKeyValues[dataItem.ItemIndex]["MessageID"].ToString();
         selectedItems.Remove(MessageID);
         Session["selectedItems"] = selectedItems;
     }
 }
 protected void radgrid_PreRender(object sender, EventArgs e)
 {
     if (Session["selectedItems"] != null)
     {
         ArrayList selectedItems = (ArrayList)Session["selectedItems"];
         Int16 stackIndex;
         for (stackIndex = 0; stackIndex <= selectedItems.Count - 1; stackIndex++)
         {
             string curItem = selectedItems[stackIndex].ToString();
             foreach (GridItem item in radgvInbox.MasterTableView.Items)
             {
                 if (item is GridDataItem)
                 {
                     GridDataItem dataItem = (GridDataItem)item;
                     if (curItem.Equals(dataItem.OwnerTableView.DataKeyValues[dataItem.ItemIndex]["MessageID"].ToString()))
                     {
                         dataItem.Selected = true;
                         break;
                     }
                 }
             }
         }
     }
 }
  
}

Lokesh
Top achievements
Rank 1
 answered on 25 Jun 2013
1 answer
99 views
Hi,
I have a Telerik Rad Grid where one of my Item template column  contains rad date time picker. My grid has around 200 rows. I have to show the grid with out paging. But grid is taking lot of time to load due to Date Time picker.Could any one help me to how to use Telerik RadDateTimePicker client-side API to enable date and Time picking for traditional TextBox controls. I got online example for only picking Date. But I need to select Time also. Please help me.


Thanks 
Himagiri
Princy
Top achievements
Rank 2
 answered on 25 Jun 2013
3 answers
70 views
Hi,
I am having a Radeditor control. When i click on the radgrid i need insert the text to radeditor on  the current cursor point. i can able to detect the row click event. but the content is not inserted into radeditor and i can't set focus to radeditor. 








Thanks
Dhamodharan
Top achievements
Rank 1
 answered on 25 Jun 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?