Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
82 views
Hi everyone,

I would like to know why the grid takes at least 3 times longer to load in IE compared to Chrome and Firefox.

Is there an explanation to that?

Thanks a lot,

Max
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Jan 2013
1 answer
83 views
I'm having an issue where the grid is not displaying the Ship sub total (see attachment).

How can I get the Ship Total to display the total for the Ship instead of the "{0:C}" literal?

How can I also get rid of the SORT bar (see attachement).
I don't have any code behind to handle this and I don't need to.

Here is some pertinent code that I have the way the grid is set up....
<telerik:RadGrid ID="RadGrid1" runat="server"
                        PageSize="20" AllowSorting="True" AllowPaging="True" ShowGroupPanel="True"
                        OnColumnCreated="RadGrid1_ColumnCreated">
                        <PagerStyle Mode="NumericPages"></PagerStyle>
                        <MasterTableView Width="100%">
                        </MasterTableView>
                        <ClientSettings>
                            <Resizing AllowColumnResize="True"></Resizing>
                        </ClientSettings>
                    </telerik:RadGrid>

protected void Button1_Click(object sender, EventArgs e)
{
    string groupBY = "CruiseLine [CruiseLine], Sum(Sales) GroupTotal [CruiseLine Total] Group By CruiseLine";
    group(groupBY);
}
 
protected void Button2_Click(object sender, EventArgs e)
{
    string groupBY = "Ship [Ship], Sum(Sales) GroupTotal [Ship Total] Group By Ship";
    group(groupBY);
}
 
protected void Button3_Click(object sender, EventArgs e)
{
    string groupBY = "Date [Date], Sum(Sales) GroupTotal [Date Total] Group By Date";
    group(groupBY);
}

protected void group(string groupBY)
    {
        try
        {
            GridGroupByExpression expression1 = GridGroupByExpression.Parse(groupBY);
            this.CustomizeExpression(expression1);
            this.RadGrid1.MasterTableView.GroupByExpressions.Add(expression1);
        }
        catch (Exception ex)
        {
            lblError.Text = string.Format("<span style='color:red'>Cannot add group by expression: {0}</span>", ex.Message);
            lblError.Visible = true;
        }
        finally
        {
            BindData();
        }
    }

protected void BindData()
    {
        Hashtable htParams = new Hashtable();
        htParams.Add("@CruiseLine", ViewState["prmCruiseLine"]);
        htParams.Add("@Ship", ViewState["prmShip"]);
        htParams.Add("@FromDate", FromDate.SelectedDate.Value.ToShortDateString());
        htParams.Add("@ToDate", ToDate.SelectedDate.Value.ToShortDateString());
 
        // Call SPROC to populate grid
        DataUtiliities data = new DataUtiliities("PrepaidConnectionString");
        DataSet dsRpt = data.ExecuteDataSet("SelectProductInfoByShipAndDate2", htParams);
 
        // Bind the Grid
        RadGrid1.DataSource = dsRpt.Tables[0].DefaultView;
        RadGrid1.DataBind();
    }

Here is the output of the groups during debugging:
groupBY = "CruiseLine [CruiseLine], Sum(Sales) GroupTotal [CruiseLine Total] Group By CruiseLine"
expression1 = {CruiseLine , sum(Sales) GroupTotal Group By CruiseLine}
 
groupBY = "Ship [Ship], Sum(Sales) GroupTotal [Ship Total] Group By Ship"
expression1 = {Ship , sum(Sales) GroupTotal Group By Ship}
Maria Ilieva
Telerik team
 answered on 30 Jan 2013
2 answers
102 views
Hi everyone,

In this other question of mine, I am facing a different problem than the previous one.

I currently have a grid, inside a radtabstrip inside a grid. In order to makes this easier, here is the name of the items.

Parent grid : grdChauffeurs
Tabstrip : RadTabStrip2
Inner grid : grdOrdre

Here is what I would like to achieve.

When I drop a row in grdDriver, I want the row to be added in the grid grdOrdre.

In my rowdrop event I have the following code :

Protected Sub grdListeCommande_RowDrop(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridDragDropEventArgs) Handles grdListeCommande.RowDrop
            Dim RowDragged As GridDataItem
            Dim RowIndexDestin As Integer
            Dim intChfNRI As Integer
            Dim intAtcNRI As Integer
            Dim tabstrip As RadTabStrip
            Dim grille As RadGrid = Nothing
 
            For Each item As GridNestedViewItem In grdChauffeurs.MasterTableView.GetItems(GridItemType.NestedView)
                tabstrip = item.FindControl("RadTabStrip2")
                grille = tabstrip.MultiPage.FindControl("grdOrdre")
            Next
 
            RowDragged = e.DraggedItems.FirstOrDefault()
 
            If (e.DestDataItem IsNot Nothing) Then
                If (e.DestDataItem.OwnerGridID = grdChauffeurs.ClientID) Then
                    Me.RowIndex = e.DestDataItem.ItemIndex
 
                    intAtcNRI = CInt(RowDragged("ATCNRI").Text)
                    intChfNRI = Me.DataTableChauffeur.Rows(Me.RowIndex).Item("NRI")
                End If
 
                Select Case False
                    Case intChfNRI <> Nothing
                    Case intAtcNRI <> Nothing
                    Case pfblnGetRoadSheet(intChfNRI, intAtcNRI)
                    Case Else
                        e.DestDataItem.Expanded = False
                        e.DestDataItem.Expanded = True
                        grille.DataSource = Me.DataTableMouvement
                End Select
                
            End If
        End Sub

I am a new developper and I'm a bit confused with how all the hierarchy works in the radgrid.

Thank you in advance for you most appreciated help

Max
Maxime
Top achievements
Rank 1
 answered on 30 Jan 2013
14 answers
250 views
Hi I am new-ish to teleriks tools so I will try my best to describe the problem I am having.

I am using telerik radscheduler that uses SQL datasource objects for its datasource. I want to be able to add a dropdown list of generic commands that the user can select from and subsequently save. I have added a resourcetype as follows:

<telerik:ResourceType ForeignKeyField="id"
              KeyField="id" Name="Commands" TextField="CommandName" />
      </ResourceTypes>

Per one of your demos I am using the Form Created Event to fill the dropdown with the list of commands. Like this:

protected void RadScheduler1_FormCreated(object sender, SchedulerFormCreatedEventArgs e)
        {
            if ((e.Container.Mode == SchedulerFormMode.AdvancedEdit) || (e.Container.Mode == SchedulerFormMode.AdvancedInsert))
            {
                
                RadComboBox ddlCommands = (RadComboBox)e.Container.FindControl("ResCommands");
                if (ddlCommands != null)
                {
                    int assetID = int.Parse(Request.QueryString["id"]);
                    string portal = (string)Session["Portal"];
                    AssetFactory assetFactory = new AssetFactory(portal);
                     
                    ddlCommands.DataSource = CommandEnums.GetListItems(assetFactory.GetAssetType(assetID));
                    ddlCommands.DataTextField = "Text";
                    ddlCommands.DataValueField = "Value";
                    ddlCommands.DataBind();
                }
}

When I click the save button I get this error: Invalid length for a Base-64 char array.

Thread information:

    Thread ID: 12

    ...

    Is impersonating: False

    Stack trace:    at System.Convert.FromBase64String(String s)

   at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString)

   at System.Web.UI.LosFormatter.Deserialize(String input)

   at Telerik.Web.UI.LosSerializer.Deserialize(String serializedObject, Boolean enableMacValidation)

   at Telerik.Web.UI.LosSerializer.Deserialize(String serializedObject)

   at Telerik.Web.UI.AdvancedTemplate.ExtractResourceValues(IDictionary target)

   at Telerik.Web.UI.AdvancedTemplate.ExtractValues(Control container)

   at Telerik.Web.UI.RadScheduler.UpdateAppointmentInline(Boolean removeExceptions)

   at Telerik.Web.UI.RadScheduler.OnBubbleEvent(Object source, EventArgs args)

   at System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args)

   at System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e)

   at System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument)

   at System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)

   at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)

   at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)

   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Do you have any ideas what I may be doing wrong?

Here is the whole page code:
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataEndField="End"
        DataKeyField="ID" DataRecurrenceField="RecurrenceRule"
        DataRecurrenceParentKeyField="RecurrenceParentID" DataSourceID="SchedulerDataSource"
        DataDescriptionField="Description"
        Height="700px"
        OnAppointmentCommand="RadScheduler1_AppointmentCommand"
        StartInsertingInAdvancedForm="true"
        Reminders-Enabled="true"
        DataReminderField="Reminder"
        StartEditingInAdvancedForm="true"
        OnFormCreated="RadScheduler1_FormCreated"
        AdvancedForm-EnableCustomAttributeEditing="true"
        OnAppointmentInsert="RadScheduler1_Scheduled_EventsInsert"
        OnAppointmentUpdate="RadScheduler1_Scheduled_EventsUpdate"
        CustomAttributeNames="Parameters"
        DataStartField="Start" DataSubjectField="Subject" Skin="Sitefinity">
        <Localization AdvancedEditAppointment="Edit Event" AdvancedNewAppointment="New Event" />
        <AppointmentContextMenuSettings EnableDefault="true" />
        <AdvancedForm Modal="true" />
        <AppointmentTemplate>
                <%# Eval("Subject") %>
                <p style="font-style: italic;">
                <%# Eval("Parameters")%></p>
        </AppointmentTemplate>
        <TimelineView UserSelectable="false" />
        <ResourceTypes>
        <telerik:ResourceType ForeignKeyField="id"
                KeyField="id" Name="Commands" TextField="CommandName" />
        </ResourceTypes>
        <ResourceStyles>
             
        </ResourceStyles>
    </telerik:RadScheduler>
    <asp:SqlDataSource ID="SchedulerDataSource" runat="server"
        ConnectionString="<%$ ConnectionStrings:ConfigurationConnectionString %>"
        DeleteCommand="DELETE FROM [Scheduled_Events] WHERE [ID] = @ID"
        InsertCommand="INSERT INTO [Scheduled_Events] ([Subject], [Start], [End], [RecurrenceRule], [RecurrenceParentID], [Description], [Reminder], [Parameters], [CommandName]) VALUES (@Subject, @Start, @End, @RecurrenceRule, @RecurrenceParentID, @Description, @Reminder, @Parameters, @CommandName)"
        SelectCommand="SELECT [ID], [Subject], [Start], [End], [RecurrenceRule], [RecurrenceParentID], [Description], [Reminder], [Parameters] FROM [Scheduled_Events]"
         
        UpdateCommand="UPDATE [Scheduled_Events] SET [Subject] = @Subject, [Start] = @Start, [End] = @End, [RecurrenceRule] = @RecurrenceRule, [RecurrenceParentID] = @RecurrenceParentID, [Description] = @Description, [Reminder] = @Reminder, [Parameters] = @Parameters, [CommandName] = @CommandName WHERE [ID] = @ID">
        <DeleteParameters>
            <asp:Parameter Name="ID" Type="Int32" />
        </DeleteParameters>
        <UpdateParameters>
            <asp:Parameter Name="Subject" Type="String" />
            <asp:Parameter Name="Start" Type="DateTime" />
            <asp:Parameter Name="End" Type="DateTime" />
            <asp:Parameter Name="RecurrenceRule" Type="String" />
            <asp:Parameter Name="RecurrenceParentID" Type="Int32" />
            <asp:Parameter Name="Description" Type="String" />
            <asp:Parameter Name="Reminder" Type="String" />
            <asp:Parameter Name="Parameters" Type="String" />
            <asp:Parameter Name="ID" Type="Int32" />
            <asp:Parameter Name="CommandName" Type="String" />
        </UpdateParameters>
        <InsertParameters>
            <asp:Parameter Name="Subject" Type="String" />
            <asp:Parameter Name="Start" Type="DateTime" />
            <asp:Parameter Name="End" Type="DateTime" />
            <asp:Parameter Name="RecurrenceRule" Type="String" />
            <asp:Parameter Name="RecurrenceParentID" Type="Int32" />
            <asp:Parameter Name="Description" Type="String" />
            <asp:Parameter Name="Reminder" Type="String" />
            <asp:Parameter Name="Parameters" Type="String" />
            <asp:Parameter Name="CommandName" Type="String" />
        </InsertParameters>



I did attempt to use a custom attribute to try this as suggested in another thread, but was unable to get the RadComboBox successfully created dynamically.

Any help would be greatly appreciated.

Thanks,
Justin
Boyan Dimitrov
Telerik team
 answered on 30 Jan 2013
0 answers
78 views
I'm using RadTreeList how to bind On RadTreeList1_ItemDataBound command name delete

below my coding:

protected void RadTreeListWork_ItemDataBound(object sender, TreeListItemDataBoundEventArgs e)
        {
            if (e.Item is TreeListDataItem)
            {
                TreeListDataItem item = (TreeListDataItem)e.Item;
                    if (item.IsChildInserted == true)
                    {
                        e.Canceled = true;
                     }
                }
            }

Thanks,
Ansari
Tamim
Top achievements
Rank 1
 asked on 30 Jan 2013
18 answers
364 views

Hello,

Im using the Grid control from Telerik's RadControls. The grid is populated with thousands of records and lists 50 records per page. I have some filtering options appearing above and the solution is in ASP.NET 3.5 with NHibernate 2.1.

Everything works fine and dandy except for when i select one of the bottom rows and some weird onfocus-event occurrs. When a search/listing has been occurred and the focus is on, lets say the search button. I then select one of the bottom rows between record 40-50, and the browser immediately scrolls down an inch or two. But when the focus is on one of the rows within the grid table, i no longer have these strange scrollings. But if i just switch the focus on anything outside the grid, the scrolling bug appears again.

This appears in IE and Chrome, but not Firefox. I guess its some onfocus event that fires when putting the radgrid in focus, but i cant find any solution on how to fix it.

Please help me, its very annoying!

Best regards, Mattias

Prashanth
Top achievements
Rank 1
 answered on 30 Jan 2013
0 answers
56 views
Hello,

I use a RadTree with custom format of its elements. Namely, each element has also 3 radio buttons as RadioButtonList, defined in a custom template. The code used to create items of new radTree is:

RadTreeNode node = new RadTreeNode(usedName + " [" + rs.ToString() + "]", "SECTION_" + rs.ToString()); // just some name and value
node.NodeTemplate = new AdminFunctionsPhenoTreeTemplate(); // makes buttons
node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
PhenoTree.Nodes.Add(node); // adding node to RadTree.
// selections.
RadioButtonList rbRights = (RadioButtonList)node.FindControl("rbRights");
if (rbRights != null)
{
  setAccessLevelToRB(rbRights, accessLevel); // set correct radio button using rbRights.SelectedIndex
}
node.DataBind();

This code successfully creates desired nodes and setAccessLeveltToRB indeed sets desired radio button as instructed.

The very same code used to create sub-trees in server side callback - I use dynamic creation of subtrees after user wants to expand the tree. The only formal difference, it attaches new subtree to Nodes property of a parent node (as opposed to RadTree "PhenoTree" object here, of course). 

When I receive a postback, I read the values of radio buttons like this:

List<RadTreeNode> alls = (List<RadTreeNode>)PhenoTree.GetAllNodes();
            foreach (RadTreeNode node in alls)
            {
                RadioButtonList rbRights = (RadioButtonList)node.FindControl("rbRights");
                accessLevel = getAccessLevelFromRB(rbRights); // this routine simply examines rbRights.SelectedIndex
 
}

 But buttons of primary root tree, created by the snippet above, always return default value, neither the one I inserted either in creation code (albeit it was reflected on screen) nor that I selected by mouse.

Template:

class AdminFunctionsPhenoTreeTemplate : ITemplate
      {
          public void InstantiateIn(Control container)
          {
              container.Controls.Add(new LiteralControl("<table style=\"margin:0px;padding:0px;\"><tr><td>"));
              Label label1 = new Label();
              label1.ID = "ItemLabel";
              label1.Text = "Text";
              label1.Font.Size = 8;
              // label1.Font.Bold = true;
              label1.DataBinding += new EventHandler(label1_DataBinding);
 
              container.Controls.Add(label1);
              container.Controls.Add(new LiteralControl("</td><td>"));
              RadioButtonList rbRights = new RadioButtonList();
              rbRights.ID = "rbRights";
              rbRights.Items.Add(new ListItem("r/o"));
              rbRights.Items.Add(new ListItem("r/w"));
              rbRights.Items.Add(new ListItem("r/w/meta"));
              rbRights.SelectedIndex = 0;
              rbRights.RepeatDirection = RepeatDirection.Horizontal;
              container.Controls.Add(rbRights);
              container.Controls.Add(new LiteralControl("</td></tr></table>"));
          }
 
          private void label1_DataBinding(object sender, EventArgs e)
          {
              Label target = (Label)sender;
              RadTreeNode node = (RadTreeNode)target.BindingContainer;
              string nodeText = (string)DataBinder.Eval(node, "Text");
              target.Text = nodeText;
          }
 
      }


I wonder what I am missing, please help me to make this work!
Askar
Top achievements
Rank 1
 asked on 30 Jan 2013
2 answers
250 views

Hello,

I'm using Dynamic Edit Form Template for editing in RadGrid. I have a custom control created to Combine a RadTextBox and a Button.
This control populated on Edit Form when I click on edit/insert button. When I click on button a pop-up window opens through Javascript code. From the Popup window I select one record and click on save and Close button of popup window. The string which is returned from the popup window is stored back in the TextBox control using AjaxPostback method. But doing this I lost my other controls selected values.

Ex. I have three controls on my edit/insert form. When we insert new record Two dropdowns and one my custom control [textbox with button] is populated. I select values in two dropdowns and then click on popup button. When the value is stored back in my textbox from popup window I lost my selection in two dropdowns. I'm not getting how to keep those values selected in my dropdowns.

To resolve the this issue I thaught to update my textbox at client side so that ajaxpostback will not occur and I do not lost my selected values from the dropdowns and other controls. But I can not access my Textbox of edit form through javascript. I tried to use

var
editedItemsArray = grid.get_editItems();

But i dont know how to access my TextBox1 from this editeditemsArray.

Please advise.

Sweta
sweta
Top achievements
Rank 1
 answered on 30 Jan 2013
10 answers
354 views
hello,

I downloaded the source code of the example "carrental" and I can not build the project.

The error message presented to me is: "Could not load file or assembly'Telerik.OpenAccess, 2010.2.714.1 Version =, Culture = neutral, PublicKeyToken =7ce17eeaf1d59342' or one of ITS dependencies."

I already tried to do the "Upgrade References" in menu "Telerik" in VS2010, but instead of this error is to appear the following error" Could not load file or assembly'Telerik.Web.UI' or one of ITS dependencies. " repeated five times.

Is there any place where you can download the version of ORM Q2 2010? Or your demoversion will be available in Q3 2010?

Greetings
bruno.
Erik
Top achievements
Rank 2
 answered on 30 Jan 2013
0 answers
380 views

hi there,

I am currently get this unhandled exception in first time of a page load (onetime for application start) and after reloading the same page, I dont get this exception and everythings is OK . I'm not use datetime conversion in my login.aspx page. this problem while cause when i use telerik control. it's attractive this exception in every page that use Telerik Rad Script Manager and stop rendering page.

i will gratefull everyone that help me for solve  this problem.

Server Error in '/' Application.

The string was not recognized as a valid DateTime. There is an unknown word starting at index 20.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.FormatException: The string was not recognized as a valid DateTime. There is an unknown word starting at index 20.

Source Error:

Line 231:                            <div class="login" id="loginPanel" runat="server">
Line 232:                                <%--<div id="login_trans"></div>--%>
Line 233:                                <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
Line 234:                                </telerik:RadScriptManager>
Line 235:                                <telerik:RadAjaxManager ID="radajaxmanager1" runat="server">

Source File: d:\HSE_NIGC_TFS\HSE_NIGC\DAP.Web.HSE\DAP.Web.HSE.WebUI\Login.aspx    Line: 233

Stack Trace:

[FormatException: The string was not recognized as a valid DateTime. There is an unknown word starting at index 20.]
   System.DateTimeParse.Parse(String s, DateTimeFormatInfo dtfi, DateTimeStyles styles) +3211050
   System.DateTime.Parse(String s, IFormatProvider provider) +28
   System.Windows.Forms.TypeLibraryTimeStampAttribute..ctor(String timestamp) +38
   System.Reflection.CustomAttribute._CreateCaObject(RuntimeModule pModule, IRuntimeMethodInfo pCtor, Byte** ppBlob, Byte* pEndBlob, Int32* pcNamedArgs) +0
   System.Reflection.CustomAttribute.CreateCaObject(RuntimeModule module, IRuntimeMethodInfo ctor, IntPtr& blob, IntPtr blobEnd, Int32& namedArgs) +46
   System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeModule decoratedModule, Int32 decoratedMetadataToken, Int32 pcaCount, RuntimeType attributeFilterType, Boolean mustBeInheritable, IList derivedAttributes, Boolean isDecoratedTargetSecurityTransparent) +529
   System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeAssembly assembly, RuntimeType caType) +103
   System.Reflection.RuntimeAssembly.GetCustomAttributes(Boolean inherit) +33
   System.Web.UI.AssemblyCache.GetAjaxFrameworkAssemblyAttribute(Assembly assembly) +76
   System.Web.UI.ScriptManager.get_DefaultAjaxFrameworkAssembly() +388
   System.Web.UI.ScriptManager..ctor() +26
   Telerik.Web.UI.RadScriptManager..ctor() +68
   ASP.login_aspx.__BuildControlRadScriptManager1() in d:\HSE_NIGC_TFS\HSE_NIGC\DAP.Web.HSE\DAP.Web.HSE.WebUI\Login.aspx:233
   ASP.login_aspx.__BuildControlloginPanel() in d:\HSE_NIGC_TFS\HSE_NIGC\DAP.Web.HSE\DAP.Web.HSE.WebUI\Login.aspx:231
   ASP.login_aspx.__BuildControlform1() in d:\HSE_NIGC_TFS\HSE_NIGC\DAP.Web.HSE\DAP.Web.HSE.WebUI\Login.aspx:61
   ASP.login_aspx.__BuildControlTree(login_aspx __ctrl) in d:\HSE_NIGC_TFS\HSE_NIGC\DAP.Web.HSE\DAP.Web.HSE.WebUI\Login.aspx:1
   ASP.login_aspx.FrameworkInitialize() in c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\c7868279\54f6c8a3\App_Web_login.aspx.cdcab7d2.3njsl4kc.0.cs:0
   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +54
   System.Web.UI.Page.ProcessRequest() +78
   System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21
   System.Web.UI.Page.ProcessRequest(HttpContext context) +49
   ASP.login_aspx.ProcessRequest(HttpContext context) in c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\c7868279\54f6c8a3\App_Web_login.aspx.cdcab7d2.3njsl4kc.0.cs:0
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +100
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1
Reza
Top achievements
Rank 1
 asked on 30 Jan 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?