Flex :: Update A Sharepoint List From It?

Mar 14, 2011

I have been trying to find a way to connect Flex to sharepoint in an elegant way that allows me to update lists, build charts, and create widgets with FLEX on the client-side. I have researched this extensively but I am running into circles.

I understand the basics of Flex data connection/webservices/etc... , I just can't seem to get my head around how to use the sharepoint list services.

View 1 Replies


Similar Posts:


Flex :: Retrieve The Sum Of Items From A Sharepoint List?

Aug 26, 2010

Is there any way to get the sum of items based on some filters from sharepoint list? I was trying to access the GetListItems method. But this returns all the items in the list. That makes the data heavy. My requirement is to get only the sum of items. For example items created in a specific year.I am trying to populate a chart in flex from the sharepoint list. Accessing all the items and then calculating the sum in flex will not work always where the list contains more items.

View 1 Replies

Insert New Item In Sharepoint List From Flex?

Jul 19, 2011

i m trying to insert new item on sharepoint list from flex using sharepoint-as3-connector

[Code]...

View 1 Replies

Actionscript 3 :: Make Flash Work With A SharePoint List Instead Of XML?

Sep 14, 2010

I heard from an article somewhere that Flash can now use SharePoint lists instead of an XML file.

However, I'm having trouble locating a tutorial which will explain how to get a Flash app to draw from a SharePoint list.

I'm working with SharePoint 2010, Flash CS4, and I'm currently using AS3 to pull in data from the XML file on the Flash app.

View 2 Replies

ActionScript 3.0 :: Pass Variables From Flash To A SharePoint List?

Aug 3, 2011

how to pass variables from flash to a SharePoint list? (a step-by-step of the entire process would be best)

View 0 Replies

Flash :: Way To Auto-update A Dataprovider In Flex List?

Feb 3, 2011

Is there a way so that every time the list is changed (data add, data deleted, etc.), the list will re-update or "refresh?"

View 2 Replies

Flex :: Update List Dynamically When Deleting Item From Database?

Feb 25, 2011

I have a List that displays the contents of an SQlite database I have created. However, When I run the function to delete one of the user-selected items from the database, the items is still displayed until I refresh the View (right now by clicking 'home' and the reentering the View). How can I get the list to automatically update when the user deletes an item? [code]...

View 2 Replies

Flex :: Keep A List From Scrolling On DataProvider Refresh/update/change?

Jun 30, 2011

I have a simple list and a background refresh protocol.When the list is scrolled down, the refresh scrolls it back to the top. I want to stop this.I have tried catching the COLLECTION_CHANGE event and validateNow(); // try to get the component to reset to the new datalist.ensureIndexIsVisible(previousIndex); // actually, I search for the previous data id in the IList, but that's not importantThis fails because the list resets itself after the change).I hate to use a Timer, ENTER_FRAME, or callLater(), but I cannot seem to figure out a way.The only other alternatives I can see is sub-classing the List so it can catch the dataProviderChanged event the DataGroup in the skin is throwing.

View 4 Replies

Data Integration :: Pulling Data From A SharePoint 2007 List?

Apr 23, 2010

I'm wondering if anyone has figured out how to pull data from a column in a SharePoint 2007 list to be able to dyamically generate a reaction in a flash object.Our designer created a dashboard of thermometers for our projects that use two variables, % complete and status (green, yellow, red, blue).

As the end user, I want to be able to update my project in my SharePoint list and have it so that my updates automatically populate that flash based dashboard.Right now, he's using an XML document that is stored in a folder on our SharePoint site and then simply updating the XML file when there are changes.It would be ideal to pull this data from the list rather than having to update and then upload the xml document to the SharePoint site.

View 1 Replies

Sharepoint WebService With Adobe Flex?

Mar 22, 2010

I have My Sharepoint Web Service URL, but when i try to access it i get HTTP Request Error. My Share point Webservice has credentials in it. I have also set that in Flex.

webService.setRemoteCredentials("CITMOSSAdministrator","Pa$$w0rd"); When i trace the url, my console does read the XML, but i am unable to call the method. It throws me HTTP Request Error.

View 1 Replies

Flex :: Using Sharepoint User Credentials In An Application?

May 2, 2011

I am deploying a flex application in sharepoint as a web part. I am planning to use sharepoint user credentials for my flex application. My flex application consists of various different user roles like author,reviewer etc . An author should be able to see all the list of sharepoint users available and can make any number of them as reviewer or author . For this I require following functionality through sharepoint for my flex application:-

1) Getting list of all users of sharepoint

2) Getting the username of the current logged in user of sharepoint through the flex application, which is deployed as a web part in sharepoint.

View 1 Replies

Flash - Spark List SelectedIndex Doesn't Update?

Sep 8, 2011

when i use nextSlide() and prevSlide(), which are executed when i click on two buttons. SelectedIndex works when i click on the elements in the List. What am i doing wrong? do i have to dispatch some events? Are there any tricks to doing it with buttons?This is my playlist class

public class Playlist extends List
{
private var dispatcher:Dispatcher;

[code]......

View 2 Replies

ActionScript 3.0 :: Update A List Component Pushing New Items Inside His DataProvider Object?

Dec 4, 2009

I'm trying to update a List component pushing new items inside his DataProvider object.

I've tried with a:
MY_LIST.invalidateList();
MY_LIST.validateNow();

but the list doesn't change, anyone has some suggestions?

View 2 Replies

Flex :: Use The FileReference.upload() Function To Upload Files To Sharepoint Or Have To Use The SP Web Services

Feb 5, 2010

Can you use the FileReference.upload() function to upload files to Sharepoint or do I have to use the SP web services? This is without adding your own ASP.NET Web Services, just using the built in SP Web Services.

View 1 Replies

Flex :: 4.1: <mx:List> Had RowCount Properly For The Limit The Displayed Items. <s:List> Doesn't

Aug 11, 2010

I'm using flex 4.1 to write an application. i read in the documents that has the rowCount property to set how many items to display. the does not have that property. how can I limit the list to display 3 items ?

View 3 Replies

Flex :: MX List ItemRollOver Event Equivalent On A Spark List Control?

May 26, 2011

Flex 3 List control had a itemRollOver event. Flex 4 List doesn't have it. Is there an equivalent or a workaround for this issue?

View 2 Replies

Flex :: 3: Scrolling Of List Items With In A List Via Scroll Wheel

Dec 31, 2009

Here is a snip from within my code:

[Code]...

The 'recommendations' dataProvider is an ArrayCollection of String, which are generally sentences about as long as this one. By setting the variableRowHeight and wordWrap properties as shown, if a sentence is too long to fit on a single line, everything works fine- the row expands and the messages show on two lines, or occasionally three.

The space allocated for this panel within the entire canvas means if the total text size of 'recommendations' exceeds six lines, I need for the entire list scroll. This is also working just fine. The trouble is when using the mouse wheel to do the scrolling- Flex scrolls both the entire list and the single item where the mouse is hovering. Often this results in only the second half of a sentence being visible. Non-programmer friends I have asked to look at this noticed this, and tell me it as a problem. If a user does not notice the dual scrolling, and sees only a fragment of a sentence, it will be perceived as an error in the application.

[Code]....

View 1 Replies

Flex :: Make List Content Dependant On Selection In Another List?

Jul 6, 2011

When a user selects a category from the first drop down box then i want the 2nd drop down to be updated based on the selection of the first drop down. I have created multiple ArrayCollections whose names are set to the "data" values of the first drop down, for instance:

[Bindable]
public var countries:ArrayCollection = new ArrayCollection([
{label:"USA",data:"USA"},

[code].....

View 2 Replies

Actionscript 3 :: Flex - List Selected Entire List By Default?

Aug 31, 2011

I am currently working on a project in Flex and I am having a hard time having a list's contents ALL be selected by default. Wondering how to do this.

<mx:List id="list" dataProvider="{dp}" allowMultipleSelection="true"/>

I'm just trying to have the list all selected.

View 2 Replies

Flex :: Spark List Have Something Similar To ItemsChangeEffect In Mx List?

Jun 28, 2010

I'm trying to animate a list as I delete the top row. All the examples I can find use itemsChangeEffect to bind to the effect, but this property exists only in MX lists, not spark lists.

Any idea how I can get the same effect done in Spark Lists?

I'm trying to remove the top most item in the list with a slight fade out effect before the rest of the items move up to replace the gap.

View 2 Replies

Flex :: Using Drag & Dop Into List Get List Items?

Nov 23, 2009

while i using drag & drop from listbox1 to listbox2 ,how can i get all the items of listbox2 in flex

View 1 Replies

Flex :: Set A Style For The Icons In A List List?

May 13, 2011

The traditional way to assign an icon would be to use the icon field of the item renderer,which reads the value of "icon" property in your data, for example:

listData.addItem({label: "Logout", icon: "com.classpth.DefualtThemeLogoutIconClass"});

But i want the DefualtThemeLogoutIconClass to changed to another class: ightThemeLogoutIconClass when the theme is changed.The only way to do this would be to use a style declaration containing a classReference to the icon, and change its the value in each of the CSS files of the various themes.The question is, is there any way to assign this style to an icon in a List, something as easy as intuitive as list[0].getIcon().setStyle("styleName");

View 1 Replies

Flash Videos On Sharepoint?

Feb 4, 2010

We would like to display flash video files (tutorials) on our Sharepoint site.Problem is, we cannot seem to either stop it from auto-playing (using the Windows Media Player) or start it playing by clicking (using flash embed).We have a Content Editor WebPart with this code currently:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="320" HEIGHT="240" id="Tutorial1" ALIGN="">
<PARAM NAME=movie VALUE="video.swf">
<PARAM NAME=quality VALUE=high>

[code]....

how we can get a "play" button or begin the video playing once the user clicks it?

View 2 Replies

ActionScript 3.0 :: Sharepoint XML In Flash?

Jan 10, 2009

It loads an xml file from the site's webservice and retrieves all the data from a list.If you look at the xml, attribuevalue pairs they can be in any order from the webservice.Also depending on the list set up in sharepoint the column names in the list will be different and therefore the xml schema changes. It sets up the namespacesit the calls getRSAttribues (my shiney new piece of code It then creates a multidimensional array with the attribute names from the schema of the XML then queries the data with the dynamically set up attributes.Its my first bit of action script and i would like some advice on how to improve the getRSAttribues function as the array seems to have an extra level to it. Any advice on how i would go about making it into a method or a parser/class/whatever would be very interesting.

Code:
var myXML:XML = new XML();
var XML_URL:String = "http://my.website.com/subsite/_vti_bin/owssvr.dll?

[code]....

View 3 Replies

AS2 :: Loading A SharePoint XML Data Into Flash?

Apr 12, 2011

I am trying to read XML data from a SharePoint site. The issue I am having is that the flash project works just fine when I preview the swf in flash, however when I try to view it in HTML it does not load the XML file.Now the XML file is not a simple document that can live in the same folder as the swf. I have to use a link to a web page. This is the code that I am using (sorry. had to change the web address)

Actionscript Code:
var testXML:XML = new XML();testXML.ignoreWhite = true;testXML.onLoad = function(success)   if (!success) {  trace("testXML did not load"); } else {

[code].....

View 4 Replies

Flash :: Export Data To Sharepoint?

Dec 3, 2010

I'm creating a Flash game that will be placed in a Sharepoint page. Is there a way to export data from the Flash game (ex: the user's score) to a different Sharepoint page? I'd like to display the high scores of different players in Sharepoint. Note: I'm using ActionScript 2.0 So here is the sequence of events... Player completes Flash game embedded in a Sharepoint page Flash exports player's score to Sharepoint database
Second Sharepoint page displays top ten player scores from database.

View 1 Replies

ActionScript 2.0 :: How To Make Swf Loop In Sharepoint

Jun 9, 2011

i developed a short movie in actionscript 2.0 with all of the AS is in one frame, and i chose "loop" under publish settings. the swf file has been added to a web part on my sharepoint site, but the movie will not loop. how can i get it to loop infinitely? is there AS that i can add for this? or does some coding need to be added to the aspx file?

View 1 Replies

Flex :: Flex Forcing Resizing When The Image Source Update Is Completed?

May 31, 2009

I have what seems a straighfoward situation: I update the source property of an image, when the image is loaded i want to redraw the border skin to fit the new size of the image.

newImgEdit.addEventListener(Event.COMPLETE, loadImgComplete);
newImgEdit.source = myurl_ressource;
private function loadImgComplete(evt:Event):void {

[Code]...

View 2 Replies

Flash :: Professional - Update Via SCUP - The Client Is Not Supposed To Be Interfered With The Update Progress

Nov 17, 2011

I am deploying Updates via SCUP and SCCM to hundreds of Computers. Fortunately Adobe provides an SCCM Update Catalog for both Adobe Flash ActiveX and Adobe Flash Plugin. But now my Problem: After publishing the Update via SCCM, the client is not supposed to be interfered with the Update Progress (which is working) I figured the Updater works like this: First SCCM checks if a Update needs to be deployed, if this is the case, The Flash Updater begins. First the old Flash Version is beeing uninstalled. But now: if the Client has a Browser Window (IE, or Firefox) open, the Updater is not able to install the new Flash Version and quits with an Error. This leaves the Client PC without any Flash (because its being uninstalled before) How can I prevent Flash being uninstalled due to the Update progress not working while a Browser window is open?

View 1 Replies

Actionscript 3 :: Movieclip Using A Timer To Update Dynamic Text. No Update?

Dec 12, 2011

I've got a movieclip, which has got a dynamic text element.The movieclip uses a package for its codeThe package if obviously derived from the MovieClip classI've got a timer, that updates the dynamic text field every second.When debugging the code, I see that the timer works well. Its updates the value of the dynamic text field.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved