A property of the Flex DataGrid and AdvancedDataGrid used to specify a data source.
Questions tagged [dataprovider]
497 questions
4
votes
1 answer
How to bind xml node value to dropdown data field in Flex?
probably a newbie question, but after looking through the 'net, still cannot find an answer... I have an XML object like this:
Sample test bank
This is a Sample test bank…

Peter
- 174
- 2
- 9
4
votes
4 answers
How can I get the ItemRenderer of a Flex Spark List from its DataProvider Object?
In Flex I can create an ItemRenderer to represent each item in the Lists DataProvider but how do I access the instance of the ItemRenderer via the DataProviders Object? Something like myList.getItemRenderer(dp.getItemAt(10));

Lee Probert
- 10,308
- 8
- 43
- 70
4
votes
6 answers
Visual Studio 2010 Add Connection dialogue not populating databases
I've installed Visual Studio 2010 and SQL Server 2008 (on 64 bit Windows 7). When I attempt to add a data source using the Add Connection dialogue, the dialogue is able to populate the servers, but when a server is chosen it is not able to populate…

Rick
- 66
- 1
- 5
4
votes
2 answers
Adobe Flex Combobox DataProvider
I have a project that was compiled with the Flex 3.2 SDK.
One of my components is a combobox, which is bound to a property (called products) in the Cairngorm model. If I insert a new value into model.products, then the combobox immediately shows the…

JonoB
- 237
- 3
- 12
4
votes
1 answer
SQL 2000 Not Supported by .NET Framework Data Provider for SQL Server in VS2010's Server Explorer Data Connections
Just tried creating a data connection to a SQL 2000 database in VS2010's Server Explorer using a .NET Framework Data Provider for SQL Server (versus OLE) and found that it didn't work.
VS2010 complained that I had to use SQL Server 2005 and up.
This…

Emmanuel
- 3,475
- 6
- 29
- 45
4
votes
2 answers
Yii Dataprovider date sorting
I have ArrayDataProvider with field of type DateTime - birthdate.
I use that dataprovider for a gridview in view section.
Since birthdates include the birthyear the sorting is not working as expected.
Is there a way to somehow tell the sorting…

Paperclip
- 615
- 5
- 14
4
votes
3 answers
@DataProvider ignores the @BeforeTest and @AfterTest methods
I have the following code:
@BeforeTest(alwaysRun = true)
public void setup() {
System.out.println("@BeforeTest");
}
@DataProvider
public String[][] provideData() {
System.out.println("@DataProvider");
return new String[][] {
…

zmorris
- 1,057
- 2
- 12
- 23
4
votes
2 answers
How to re-render a specific node in gwt cell tree
I am implementing a directory structure like Windows Explorer. I want to re-render a specific node of tree after any folder operations is done such as add folder, remove folder... etc
private ListDataProvider

Shebin KK
- 63
- 6
4
votes
1 answer
Is there a factory method in ADO.NET to get the parameter flag?
I am using ADO.NET interfaces to create a database independent program. The factory takes in a provider name and returns vendor specific objects which implement the ADO interface. This is great.
But I can't find a factory for the flag which…

mike
- 329
- 2
- 11
4
votes
2 answers
"Unable to find the requested .Net Framework Data Provider. It may not be installed."
I know that there have been a lot of other postings on this error but none have been able to shed any light or help on my issue. I am using a straight up connection to SqlExpress, so no special Oracle or MySQL databases or anything. It seems like…

Gary O. Stenstrom
- 2,284
- 9
- 38
- 59
4
votes
4 answers
How do I tell a DataProvider to update?
I'm using an array to populate a DataProvider, which I'm using to populate a list component. Like this:
var myDataProvider = new DataProvider(this.myArray);
this['list'].dataProvider = myDataProvider;
When changes are made to the array, I want to…

Robert
- 6,660
- 5
- 39
- 62
3
votes
1 answer
Need some help understanding model and dataprovider
I am new to Yii and am trying to understand it by creating a hobby web site to manage my food shopping. I am trying to create a page which lists my recipes and has a +/- button next to each recipe which when pressed updates a shopping list on the…

Umbungu
- 945
- 3
- 10
- 30
3
votes
1 answer
Firebird DDEX Visual Studio 2010 "Unable to find the requested .Net Framework Data Provider. It may not be installed"
I have been stuck for a number of days now with this problem. I see a lot of people have this problem and I have tried many things but am still unsuccessful. Please can someone help me.
I am running Windows 7 64bit, MS Visual Studio 2010, Firebird…

phuduhudu
- 31
- 1
- 2
3
votes
1 answer
Adding properties to virtual files
I'm developing a explorer data provider based on this sample. I already added drag & drop support. Now I want that the files and folders can be ordered by filetyp, size or whatever. The problem seems that the virtual files have only the name…

rekire
- 47,260
- 30
- 167
- 264
3
votes
1 answer
How to create a data provider for use with Excel
Excel (2010) has functionality to create pivot tables from an external data source like from Access, From Web and other data sources like SQL server and ODBC. Suppose I have created a new database system called X and I want to create the…

Thomas de Nooij
- 41
- 4