Microsoft Visual Studio LightSwitch is a rapid application development tool for creating data centric Silverlight applications.

learn more… | top users | synonyms (5)

0
votes
0answers
3 views

Lightswitch 2011 and Windows Server 2012 Standard edition

Can be Lightswitch 2011 application deployed on windows server 2012 standard edition, please? In my opinion, officially supported .NET framework for Lightswitch 2011 (and also 2012) is only 4.0 ...
0
votes
0answers
12 views

Disable Paging is not working in light switch

I am working on light-switch web app. In a data entry screen, i have a autocomplete box of user-list. On Screen created method, i have auto select the property according to current user. It works ...
0
votes
0answers
7 views

Programmatic Report in Lightswitch

Is it possible to create a report programmatically in Light Switch? I would like my customer to enter data and upon saving, a report is automatically generated and saved in a specific location. ...
0
votes
0answers
15 views

Accessing report created under Server from Screens - Lightswitch

I am having a problem and can't seem to find a solution. I am creating a light switch application and would like the possibility of automatically storing a report in a location on the hard drive once ...
-1
votes
1answer
26 views

How to pass a parameter in lightswitch (Add screen) [closed]

English version: How do I pass the SelectedItem of the record that you select and when you give click to "Add Management" appears in "Management Order Details" Log appears I selected? Spanish ...
0
votes
1answer
23 views

Lightswitch - access Shell object from Application object

Does anybody know, how Lightswitch's Application object can access shell object? Application.Details.GetModel().Shell is type of - Microsoft.LightSwitch.Model.IShellDefinition ...
1
vote
1answer
39 views

Lambda scope for Entity_Filter Method - MS Lightswitch 2012

I am a novice programmer working on a MS Lightswitch application to help others in my company enter purchases. One of the requirements is that users can only see purchases that have been charged to a ...
0
votes
1answer
33 views

LightSwitch establishing a connection to SQL Server instance

I’m just trying to put together a simple example app. I choose my datasource, a SQL 2008 R2 development database not on my box, pick integrated security, I pick some tables and I add a screen to the ...
0
votes
0answers
8 views

Lightswitch solution suddenly won't compile with critical error

My Lightswitch solution after opening it up suddenly won't let me compile the solution with the error The "UpdateRuntimeConfigFile" task was not given a value for the required parameter ...
0
votes
0answers
14 views

DataGrid inside Lightswitch custom control has blank headers

I'm using a custom control (Silverlight 5) to do layout for printing Lightswitch data. The control contains a DataGrid who's headers appear correctly in the designer but blank at run-time. The bound ...
0
votes
0answers
12 views

Lightswitch ApplicationServerContext

I need to use functionality available with the Lightswitch ApplicationServerContext available in the 2012 version of Lightswitch in the Silverlight version of the client part of the application. The ...
1
vote
1answer
72 views

visual studio 2012 lightswitch HTML Project error can't load application item provider sequence contains no element

It is the first time for me to use lightswitch and when trying to start a new Lightswitch HTML project on Visual Studio Pro 2012 I get the following error: cannot load application item provider ...
2
votes
0answers
21 views

How to manually trigger search function

In my screen I have created a tab control which contains several tables/queries for each tab. To address some performance issues, each of the table has the Auto Execute Query option disabled. I was ...
0
votes
1answer
26 views

How to Debug LightSwitch Save Pipeline for Corrupt ListDetails Screen?

VS2012.2 LightSwitch Silverlight Client Apparently I have corrupted the Save Pipeline on a ListDetails screen called PasswordRecordEditor (the FUBAR screen). The FUBAR screen also contains a Property ...
0
votes
1answer
68 views

LightSwitch: how to access and change control properties in AddAndEditNew default modal

In LightSwitch, when I open the default modal, calling the AddAndEditNew_Execute method, I want to change properties of the controls inside the modal dialog. For instance: I want to change a TextBox ...
0
votes
0answers
124 views

Lightswitch 2012 Html Client custom control textbox delete button

I create a custom control: myapp.Home_BrowsePunkteSet.BaufilterTxt_render = function (element, contentItem) { // Write code here. var txt = $('<input />', { id: 'bauFilterTxt', type: 'text' }); ...
3
votes
2answers
60 views

Lightswitch - Hiding Columns

FindControl seems to only reference the name of the grid, not the column name inside the grid. I can't find any documentation or examples regarding FindControlInCollection either. I don't have any ...
0
votes
1answer
51 views

Lightswitch v1 Desktop Application doesn't work on 64bit client

I have made a Lightswitch v1 (2011) Desktop application on Visual Studio 2010 Professional. My OS is 32 bit Windows 7 Professional. The application connects to an SQL Server 2005 database, using SQL ...
2
votes
3answers
126 views

LightSwitch v1 shows red X and unable to load data

I have made an application using Visual Studio LightSwitch 2011 (v1) running on Visual Studio 2010 Professional. It is a desktop application, and I use SQL Server Authentication to connect to the ...
0
votes
0answers
54 views

Saving images in Azure Blob Storage using Lightswitch 2012

I have a lightswitch application which currently stores all data in SQL Azure - including images. But I would like to keep the images separately in Azure Blob Storage and all non-binary data as it is. ...
0
votes
1answer
111 views

Lightswitch IIS 7.5 Deployment - GetAuthenticationInfo

I am having an absolute nightmare with the "Load operation failed for query 'GetAuthenticationInfo'. [HttpWebRequest_WebException_RemoteServer]" error when deploying my applications to a new server. ...
1
vote
1answer
127 views

LightSwitch HTML Client - How to add global menu

Is it possible to add global menu items like in desktop client LightSwitch? Or something simular to it... How, or better question is, where can I do it? Ty
0
votes
1answer
69 views

One to Zero…One Master Detail in Lightswitch HTML Client

Creating a master detail with this relationship: Parent (1) ---> Child(0 or 1) The details page shows the child record greyed out. I realise this is because Lightswitch doesn't know if it should ...
2
votes
1answer
137 views

LightSwitch HTML Client - Select Modal Picker value from code

I would need to select item in a Modal Picker from JS. I got value in DOM. Can somebody give me a hint or example how to do it? Thank you for your time!
0
votes
1answer
62 views

WCF RIA and LightSwitch HTML - item add/edit

I'm new to WCF RIA and LightSwitch HTML so I'm probably missing something. I'm making small web app for smart phones. My start screen got list of items that are retrieved via WCF RIA service. Data ...
0
votes
0answers
51 views

SignalR & Lightswitch: Subscription via “Hubproxy.On” does not always fire when deployed

I Successfully implemented SignalR in our 3tier Lightswitch Application. It is Hosted on one of our Servers with IIS6. Invoking Server methods works as expected. A Lot of those methods will give ...
0
votes
0answers
37 views

Including child entity ADO.net EF, LinqToEntities

I'm trying to get all my child entities to get loaded in the same query as the "master" table, instead of every property loads one by one. It's an ADO.net database model connected to SQL Server 2008. ...
1
vote
0answers
144 views

Kendo Grid with Lightswitch HTML

AM attempting to use Kendo Grid with Lightswitch. I can get data binding working with local data. When I bind to lightswitch data, nothing shows up. Code looks like this ...
0
votes
0answers
33 views

Is there a way to tab (keyboard) navigate to add more than 20 properties in a table?

When adding properties to a table I just tab into the next one and it works fine up until there are 20 properties. Once I need to add property number 21, I have to use the mouse to scroll down and ...
0
votes
1answer
99 views

Reporting within lightswitch web application

Currently I am working on a tool using Lightingswitch. It is a pretty straightforward tool and will be deployed as a webapplication on either Windows Azure or Amazon cloud service. Depending on the ...
0
votes
1answer
63 views

LightSwitch - bulk-loading all requests into one using a domain service

I need to group some data from a SQL Server database and since LightSwitch doesn't support that out-of-the-box I use a Domain Service according to Eric Erhardt's guide. However my table contains ...
0
votes
1answer
44 views

“Save operation failed invalid MIME part type” in Lightswitch HTML Client

When trying to save a record in VS Lightswitch HTML Client I get this error pop up. "Save operation failed invalid MIME part type" It does it in the HTML Client but I don't know if it's exclusive ...
0
votes
1answer
98 views

Populating Application Tables from SQL Tables in Visual Studio Lightswitch

I've written a separate plug-in application that log users activity in our office using a specific piece of software to a SQL database. The plugin logs when the user opens the application, their ...
0
votes
2answers
85 views

Lightswitch 2012 Update 2. Cannot edit data

I had a functioning Lightswitch application built with VS2012RTM. It was interacting with a RIA service backend. Recently, the RIA Service assembly was 'upgraded' to use DbContext instead of ...
5
votes
0answers
129 views

LightSwitch related data requests optimization

I have a SQL Server 2008 table with a lot of foreign keys, when opening this in a screen it takes very long time to load all related data, like 10 seconds... Here's a chart from Fiddler showing ...
1
vote
1answer
73 views

Foreign/related data with WCF RIA Domainservice in LightSwitch

I have a LightSwitch application where I need to aggregate data and being able to edit it. I followed Eric Erhardts guide which works fine. Then in the DomainService class I added this to make updates ...
0
votes
1answer
69 views

Autofill username in Add data screen in lightswitch

I have a add data screen. There is a entity Username (which is foreign key refrence from user table). So Light-switch is showing auto-complete box. How can i restrict that only Current User-name is ...
0
votes
1answer
105 views

Form Authentication and Active users in LightSwitch Web App

Is there any way i can trace when user has Login (i.e. insert time of login in a log table) and how many users are currently active. I am using Form Authentication. I have search but i got stuff ...
0
votes
1answer
62 views

Adding new row to LightSwitch combobox

I'm having problem with LightSwitch (VS 2012 version, Silverlight client) screen design. I have following data model: Agent table Training table Participant tablehaving 1-to-many relationship with ...
1
vote
1answer
342 views

Lightswitch is slow, ADO.NET Entity Framework/Domain Service/WCF RIA Service

I'm developing an Lighswitch application in VS2012 with an external SQL Server 2008. I'm using a WCF RIA Service to fetch my data, using these techniques: ...
0
votes
2answers
51 views

How can I export to excel when creating an application that works in the browser for Lightswitch?

How can I export to excel when creating an application that works in the browser for Lightswitch?
1
vote
1answer
45 views

LINQ query works agains SQL Server but not Entity Framework/LINQ to SQL

I have a LINQ query which works fine when I test it in LINQPad agains my SQL Server database, however when I test it against my Entity Framework context (which is required in my LightSwitch .NET app) ...
0
votes
1answer
106 views

Select item in Lightswitch grid when click on custom control

I have Lightswitch app and i have screen with grid there, in each row i have my custom control - image with link to selcted item detail screen , problem is that if i click on that control it doesnt ...
0
votes
2answers
168 views

How to set a property value to auto increment in visual studio lightswitch 2012

i want to set a property value in a table to default auto increment,but their are no options to do so in lightswitch2012 to my knowledge which is given that i recently started learning ...
0
votes
0answers
75 views

how to set default property value as the id of the table in lightswitch 2012

i am trying to set a default property value in a table as the value of the auto genearated table id. Table name : Customer id->primary key ,auto generated CustomerNo->(to be set with value of id) ...
0
votes
2answers
96 views

Find Control in collection - event ControlAvailable Disabled

In my lightswitch app i need to add a small image control to every row, when clicking on it , it should send you to a detail screen. I made the silverlight control and added it to the lightswitch app. ...
0
votes
0answers
29 views

Lightswitch getting 401 in Trace.axd after log in

I have an Lightswitch OOB Desktop application. What reasons could there be for getting a 401 error in my trace.axd after a user has logged in? It seems that any data related operations cause a log on ...
0
votes
1answer
66 views

Rewrite “group by” LINQ without grouping

I'm developing a Lightswitch app and need to do view some aggregated data in a screen. However LightSwitch doesn't support "group by" and "sum", so my question is if this could be rewritten without ...
0
votes
1answer
274 views

LightSwitch HTML Client to automatically run queries without refreshing entire page

In Lightswitch HTML client we have created a screen to display the work in progress for a particular business processes. This is to be displayed on a big screen, much like when you go to Argos to ...
4
votes
1answer
134 views

LINQ - filter duplicates with condition

I'm developing an .NET application where I need to filter data from SQL Server 2008 depending on a condition. My data structure looks like this: The result should be grouped and sorted by Key. By ...

1 2 3 4 5 12