PATCH: 2 new features: selectOnLoad and ds_TotalRowCount

Hi all,
I've got another patch. This one is pretty simple. In my app,
I need the user to specifically select something from one dataset,
which only then should trigger the second dataset to get loaded.
And likewise to a third, fourth, fifth and six dataset. To prevent
a lot of excess calls occurring, I wanted all the datasets to NOT
select the first row when they load their data. So I added a
selectOnLoad option to the list of options you can pass when
you create a XMLDataSet. If false, then once the XML is loaded, the
first row will not be selected. By default this is true, so it
won't break your apps.
Second patch was to a add a ds_TotalRowCount psuedo column
which just returns the total number of rows in the unfiltered
dataset. This allows me to do things like: "Showing 12 of 123
records" easier.
Here's the patch:
quote:
--- C:\Documents and Settings\mcclurd\My Documents\My
Website\Spry_1_2\includes\SpryData.js Fri Jul 07 11:08:00 2006
+++
c:\projects\scm\implementation\src\docroot\js\lib\spry\SpryData.js
Mon Jul 17 12:02:18 2006
@@ -1282,7 +1282,7 @@
this.name = "";
this.internalID = Spry.Data.DataSet.nextDataSetID++;
- this.curRowID = 0;
+ this.curRowID = -1;
this.data = null;
this.unfilteredData = null;
this.dataHash = null;
@@ -1748,6 +1761,7 @@
this.dataSetsForDataRefStrings = new Array;
this.hasDataRefStrings = false;
this.useCache = true;
+ this.selectOnLoad = true;
// Create a loadURL request object to store any load options
// the caller specified. We'll fill in the URL at the last
minute
@@ -1925,7 +1939,7 @@
this.dataWasLoaded = false;
this.unfilteredData = null;
this.dataHash = null;
- this.curRowID = 0;
+ this.curRowID = -1;
// At this point the url should've been processed if it
contained any
// data references. Set the url of the requestInfo structure
and pass it
@@ -2018,7 +2032,9 @@
this.filter(this.filterFunc, true);
// The default "current" row is the first row of the data
set.
- if (this.data && this.data.length > 0)
+ if (!this.selectOnLoad)
+ this.curRowID = -1;
+ else if (this.data && this.data.length > 0)
this.curRowID = this.data[0]['ds_RowID'];
else
this.curRowID = 0;
@@ -2910,6 +2935,8 @@
outputStr += (dsContext.getRowIndex() + 1);
else if (token.data == "ds_RowCount")
outputStr += dsContext.getNumRows();
+ else if (token.data == "ds_TotalRowCount")
+ outputStr += dsContext.getTotalNumRows();
else if (token.data == "ds_CurrentRowNumber")
outputStr += ds.getRowNumber(ds.getCurrentRow());
else if (token.data == "ds_CurrentRowID")
@@ -3128,6 +3155,11 @@
resultStr += dsContext.getNumRows();
row = null;
+ else if (fieldName == "ds_TotalRowCount")
+ {
+ resultStr += dsContext.getTotalNumRows();
+ row = null;
+ }
else if (fieldName == "ds_CurrentRowNumber")
var ds = dsContext.getDataSet();
@@ -3243,6 +3275,10 @@
this.getNumRows = function()
var rows = m_dataSet.getData();
+ return rows ? rows.length : 0;
+ };
+ this.getTotalNumRows = function() {
+ var rows = m_dataSet.getUnfilteredData();
return rows ? rows.length : 0;
this.getCurrentRow = function()

How about the total rows for a filtered data set. That would
be good also... is that information available at this time?

Similar Messages

  • List of new features, changes, and improvements from Designer ES2 to ES3 and then ES3 to ES4

    I have been scouring the Adobe website and even contacted customer service for a list of all the changes made from Livecycle Designer ES2 to ES3 and then ES3 to ES4 with no luck.  It seems like something basic that would be available.  I am currently using ES2 and need to know if anything was changed or added to ES3 and then ES4 to see if it is worth the cost of upgrading.  I do not use any of the other components of Livecycle and pretty much all the information on the Adobe website always goes back to those programs or how Designer works with those programs and it does not apply to me.
    It is frustrating because it seems like Designer is an neglected stepchild of the ES Suite.

    I have been scouring the Adobe website and even contacted customer service for a list of all the changes made from Livecycle Designer ES2 to ES3 and then ES3 to ES4 with no luck.  It seems like something basic that would be available.  I am currently using ES2 and need to know if anything was changed or added to ES3 and then ES4 to see if it is worth the cost of upgrading.  I do not use any of the other components of Livecycle and pretty much all the information on the Adobe website always goes back to those programs or how Designer works with those programs and it does not apply to me.
    It is frustrating because it seems like Designer is an neglected stepchild of the ES Suite.

  • Ask the Expert: Cisco Unified Contact Center Express (UCCX) Version 10.0 - Upgrade, Migration, and New Features Overview

                With Abhiram Kramadhati 
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about the upgrade, migration methods, and new features of the latest released Version 10.0 of Cisco Unified Contact Center Express (UCCX) with Cisco expert Abhiram Kramadhati.
    Abhiram will address the following on the latest release of Cisco UCCX Version 10.0:
    Installation
    Upgrade from previous versions - both Linux and Windows   
    Migration from MCS to Cisco UCS environment - Different methods and best practices
    New features - Overview and limitations
    This discussion will center on install and upgrade best practices, changes in hardware support, and migration methods from MCS to Cisco UCS. He can also briefly discuss the new features introduced in 10.0. The discussion focuses the latest versions, but queries about general Cisco UCCX topics can be addressed too if time allows.
    Abhiram Kramadhati is an engineer with the Contact Center Backbone group. He has been working with Cisco UCCX since he joined Cisco. During two years at Cisco, he has built his expertise around Cisco UCCX telephony applications, Java Telephony API (JTAPI) integration, Cisco UCCX system behavior, LDAP components, and Cisco UCCX as IP interactive voice response in Unified Contact Center Enterprise (UCCE) environments. He also works on other technologies, including Unified Communications Manager and UCCE. He has been involved in many technical escalations in the Asia Pacific region. Abhiram also holds a CCIE in voice (40065).
    For more details about this topic, refer to the recently published Tech-Talk Video and Blog.
    Remember to use the rating system to let Abhiram know if you have received an adequate response. 
    Abhiram might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation in the Voice, Video, and Collaboration  community,  sub-community, Contact Center discussion forum shortly after the event. This event lasts through January 31, 2014. Visit this forum often to view responses to your questions and the questions of other community members.

    Hi Anurag,
    Thanks for your questions.
    1:Is there change in DB architecture as CUIC is the only option as compared to previous linux version UCCX ?
    I assume this is from the tables regarding historical data. The database schema essentially remains the same since UCCX 9.0 had CUIC too and we had a seperate DB Space for CUIC and we still continue with that. The traditional historical tables remain and the replication process remains the same too.
    2:Is there any version change for Linux OS used as VOS,
    The Linux version is Red Hat Linux 5. To be precise:
    [root@uccx10pub /]# cat etc/redhat-release
    Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    3:Is there any API architecture change in UCCX 10 from previous releases ?
    I can answer this more of an overview. The only enhancement in the API side is the introduction of REST API step in the script editor. You can now make REST calls from the script and this ofcourse opens up a whole new world of possiblities.
    4:Since from UCCX 10 , we can only use either CAD or Finnesse at one  time, whats the impact of changing this after some time in production,  let say , i used CAD for 2 months and then i decided to move to Finesse,  whats the impact ? or is it a smooth change as switching CUIC and HRC  in previoius release ?
    For the scenario you mentioned, there is absolutely no problem. The point to note is that the Finesse services are activated/deactivated but the CAD desktop services are ALWAYS running. The only condition to keep in mind is that you can use ONLY ONE type of agent desktop at any time.  Also if Finesse is not used and CAD operations are used extensively, it is advisable to shutdown the Finesse service.
    5:Is 3rd Party UCS hardware supported by UCCX 10 instead of using Cisco manufactured UCS , can i use HP hardware for Virtualisation ?
    Yes, it can be used. This is something called as "Third party specs based specification". The most important things seen for compatibility are:
    Inter CPU Model
    It it is on thVMWare Hardware Compatibilty List
    You can get more information about this on the "Can I use this server?" section of UC Virtualized Hardware page:
    http://docwiki.cisco.com/wiki/UC_Virtualization_Supported_Hardware#.22Can_I_use_this_server.3F.22
    6:Is Host name change supported?
    Yes, the hostname change is supported. The prcocedure is documented in the UCCX 10.0 Administration Guide:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_10_0/configuration/guide/UCCX_BK_W1AF9DDD_00_uccx-admin-guide-10.0.pdf (Pg 168)
    Cheers,
    Abhiram Kramadhati

  • What is the best way to communicate my displeasure with new features?

    tl;dr How can I complain to FireFox about the new search bar in new tabs? (Or other new features)
    I've seen a question or two here about this new feature already, and it's quite obvious that the developers at FireFox are not exactly interested in what their users think of this particular feature.
    The feature I'm referring to is the new search bar in the New Tab.
    I've attempted a fix mentioned in a previous post (create a sub-directory 'Chrome' and create a CSS file containing specific style commands) and it did not work. I've tried a couple of other fixes mentioned on third party websites as well, to no avail.
    Knowing that FireFox would add something like this without allowing an option to disable it is quite disheartening. I've been enjoying my daily use of FireFox over other browsers I had used in the past because they were cluttered and unclean, and at the time FireFox was not. This search bar has ruined that. My pinned tabs have been squashed to roughly half their original size, and the search bar is unsightly, at best.
    Correct me if I'm wrong, but don't we already have a search bar at the top of the screen? I fail to see any purpose in this, except to annoy users. If there is a further purpose, please inform me (though to be completely honest, it will not change my opinion here, though it may soften the damage done)
    As of yet, there have been very few features in FireFox that I have been displeased with, and each of them was shortly followed by an add-on to disable them (Or they had come with an option for disabling upon release)
    I'm not here asking for help as to how to remove the search bar, I'm here asking for a link that I can use to directly inform the developers of FireFox of my opinions regarding this update.
    On a third party site I read an article that claimed one of the developers made mention of an option for users to disable this search bar... According to the article, he never received a reply.
    That gets me thinking, if FireFox won't listen to it's own team, should we expect them to listen to us?
    I'm quite close to simply leaving FireFox because of this feature, as now it's little better than what I've left behind in the past. PaleMoon was nice, though a bit slower.
    I'm not saying that I'm going to stop using FireFox, only that I'm quite put off because of what I've read, and the lack of an option to disable this feature.
    If such an option exists already, please give me instruction as to how to do so, and then kindly disregard this query.
    Thank you for taking the time to read this and have a nice day,
    Dillon P.

    Sorry I am only another Firefox user and do not really see anyway of helping you with this quest.
    You may use feedback and make short comments.
    * https://input.mozilla.org/feedback
    *And see comments made from the interactive page https://input.mozilla.org
    Statistical data from the comments are made available to developers and others.
    AFAIK no one from Mozilla is likely to wish to engage in conversations about newly introduced features or deliberate feature regressions. Developers did post on the forum for a day or two after the introduction of Firefox 29 (Australis) but did not hang around and the subject of Firefox development is again considered to be off topic and outside the scope of this forum.
    The forum manager who will confirm this is off topic is Madalina. (Listing & contact details https://support.mozilla.org/en-US/kb/meet-team )
    This is a link [/questions/998084#answer-566525] relating to one developers comments from back when it was on topic.
    The mailinglists and blogs can be seen here
    * https://www.mozilla.org/about/forums/#general-development
    * Nearly always closed for comments but https://blog.mozilla.org
    ** https://blog.mozilla.org/ux/
    if you do discover anywhere where staff welcome discussion and engage with end users please let us know.
    I will tag this post as '''escalate''' so that at least it is seen by HelpDesk staff maybe they are aware of some method end users may use to engage in dialogue, besides posting one way input comments.
    IIRC there was talk of listing any such resources if they were discovered, so that we could post more helpful replies than this one.
    We do not specifically deal with hacks to Firefox on this forum but will try to help with advice, mainly saying use addons. Please continue to post if you have direct questions you think we may be able to assist with.

  • Diff,  in IDOC;s features, changes and functionalities in 4.6c to ecc6

    <b>Hi Guru’s
    Will anyone share knowledge / experience about the new features, changes and functionalities of<u> IDOC's  which are available in ECC 6 version when compare to 4.6C version  </u>. Both technical and functional upgrade point of view
    Will you mail me at [email protected]
    Reward points for helpful answers,
    Regards,
    PV</b>

    Dear,,
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 C Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    I hope this helps,
    Lucio Rodrigues

  • Changes or new features in 2012 from 2008R2

    hi All,
    I want to know what are the new features,datatypes and additional details added to sql server 2012 not in 2008 R2...
    Thanks in Advance..

    Hello,
    Please read the following article:
    http://technet.microsoft.com/en-us/library/bb500435.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Turn off new feature/tutorial/etc panel?

    how does one turn off this panel at launch? i cannot seem to find where to do this.

    Hi Tranac,
    Sorry for my first response. My apologies. I thought you were asking for the "Transform Panel" which gets invoked on creating rectangle.
    If you have the cloud subscription then:
    For the Welcome screen you can select the "New Feature" tab and scroll to the bottom of this tab.
    Then select the "Don't Show Welcome Screen Again" check box.
    If you are using it as trial then this option "Don't Show Welcome Screen Again" is not displayed.
    With Best Regards,
    Raghuveer

  • Hi I am currently subscribed to PS CC but I don't think I have the latest version.  I beleive this because I don't get the new welcome screen and don't new feature like the structure and color setting in the content aware patch tool.  I have checked for u

    Hi I am currently have a subscription to PS CC but I don't think I have the latest version.  I believe this because I don't get the new welcome screen and don't have new features like the structure and color setting in the content aware patch tool.  I have checked for updates and it tells me I have the current version.  I check in PS I have version 14.2.1.  I also have CS6 installed on my PC, could this be somehow be doing something or am I doing something wrong.  Would anyone have any suggestions.

    It's under "Find New Apps".  You have to scroll down to see it.

  • IBP 4.0 FP1 Patch 2 - Need more info on new features in Supply Planning

    Hi All,
    I was reading the SAP help and some of the new features are not very clear to me, if you have clarity around it please read and help me to get more clarity.
    As per SAP Help,The following features are now available in IBP for supply:
    Separate lead time units of measure can be defined for use in multiple planning areas depending on different time granularities.
    My Query - Where do we define it? I do not see any additional attribute in the MDT where lead time is present but don't see any attribute to define lead time units or any other different settings in the planning area so how can we define this?
    Static periods of supply are taken into account as input for the inventory target, with projected periods of coverage provided as output.
    My Query - What exactly has changed and which are the new key figures here to support this? I could not understand this from reading the above text.
    Independent demand is taken into account as input at the product location, in addition to the distribution demand from other nodes and customer demand.
    The optimizer algorithm supports the Non-Delivery Cost Rate key figure as input for the independent demand at the product location.
    My Query - A new key figure "INDEPENDENTDEMAND" is available now @PERPRODLOC so first point is very clear but second point is very confusing to me as "Non delivery cost rate" is only defined @PERPRODCUST so how we will define the non delivery cost rate for independent demand which is at different planning level and if we are not able to define it how optimizer algorithm will support it? Ideally it needs to be at same level like consensus demand and Non delivery cost rate both @PERPRODCUST Level.
    Thanks
    Girish

    Hi Mark,
    While I'm not in your list of people to respond I figure I give it a go anyways :-)
    The list of features you mentioned is a nice summary. One of the main release themes is data quality as you noticed. Apart from changes to the name&address functionality we also added the advanced matching and merging into this release. So you can use custom rules to match and merge data. This also allows you to do things like householding for customer data records. In essence we have now completed the integration of Pure*Integrate into Warehouse Builder.
    The mapping debugger is another big thing. This allow you to walk through your mappings and see in detail what happes to the data.
    The metadata change management is now in the UI. THis means there is now object level version management in Warehouse Builder via the UI. You can also compare versions and get a difference report.
    As you mentioned there are a number of smaller and bigger features next to this. The idea for this release is to make OWB a top Data Quality product and allow you to do your ETL and DQ in one tool. Apart from that we have added usability features (debugger, N&A wizard) and we have added some features to solve specific problems.
    Especially the corelated commit is interesting in that respect. You can now, in a map with multiple targets control the commit, and choose to either commit all targets or none, or commit them individually (current behavior).
    As usual there is a lot more, as this is indeed a major release. Keep an eye on OTN for more collateral regarding the new features. We are currently updating the site to reflect the new stuff.
    On the OLAP patch, both 9.0.4 and 9.2 will work equally well with the OLAP patch (when it is available). In 9.2 we added some small thing around composites. More about that when there is an OLAP patch to test this one on in a customer site.
    I hope this answered the question, if not let me know.
    Jean-Pierre

  • Maxdb new features - Page Clustering and Prefetch

    Hi to all,
    2 new features of maxdb are available with new patches: Page Clustering and Prefetch in OLTP-Systems.
    Are there any experiences to this features?
    READAHEAD_TABLE_THRESHOLD
    "This parameter is used to specify, if read operations of tables
    should be optimized, i.e. if during a table access more than the
    specified value in pages is affected, servertasks will be used to
    read ahead pages of this table."
    I activated this parameter in November. The system now starts more quickly and some expensive sql-statements may be faster. But the average db-time didn't change.
    Page Clustering can be activated with parameter: DATA_IO_BLOCK_COUNT
    Then tables can be migrated with SQL-Statement: ALTER TABLE <table name> CLUSTER
    I activated this only for one table. This table now is read much faster.
    My questions.
    Is there a documentation available for this features?
    How can I "uncluster" clustered tables?
    When this features are activated, expensive sql-statements are processed much faster. Because of the high workload on storagesystem, all other transaction may get slower?
    regards
    Franz

    > 2 new features of maxdb are available with new patches: Page Clustering and Prefetch in OLTP-Systems.
    First of all: both features, although technically available, are not yet generally released for OLTP usage.
    The current implementation of page prefetching is explicitely a proof-of-concept implementation which should be used by recommendation from MaxDB support only.
    There are several limitations to the functionality at the moment, e.g. it does only work for table scans.
    It does not work for joins, for index builds neither does it work on clustered tables.
    Prefetching is available to 7.6 release only at the moment, so after an upgrade to 7.7 this feature would be gone...
    > I activated this parameter in November. The system now starts more quickly and some expensive sql-statements may be faster. But the average db-time didn't change.
    Well, nothing surprising here.
    On SAP start there happen a lot of tablescans, mostly attributable to the fully buffered tables for the ABAP internals (security, ddic, etc.)
    These statements will of course benefit if the pages are now read into the buffer in parallel.
    For the avg. db-time: be happy!
    This basically means, that most of the statements running in your system aren't processed by table scans, which is for MaxDB nearly always a very good thing.
    > Page Clustering can be activated with parameter: DATA_IO_BLOCK_COUNT
    > Then tables can be migrated with SQL-Statement: ALTER TABLE <table name> CLUSTER
    Ok, page clustering is not documented yet (just as prefetching is not officially documented) and not released for OLTP.
    > I activated this only for one table. This table now is read much faster.
    >
    > My questions.
    > Is there a documentation available for this features?
    Hmm.. you're using undocumented features - what do you expect?`
    No, currently there is no official documentation.
    There is work going on to provide official documentation but none of it is released yet (and it will take some more time!)
    > How can I "uncluster" clustered tables?
    ALTER TABLE <tablename> NOT CLUSTER
    > When this features are activated, expensive sql-statements are processed much faster. Because of the high workload on storagesystem, all other transaction may get slower?
    It's not that simple.
    Both features address specific issues and are used only in very specific circumstances.
    The clustering feature will not improve performance if the table is not accessed via the cluster key.
    In fact, it may even decrease performance if this is done.
    Also, at the moment clustered tables don't stay clustered on updates/inserts/deletes.
    Therefore it is not necessarily a good idea to cluster tables like REPOLOAD pr REPOSRC on a development system.
    regards,
    Lars

  • Ios 5 Update New Features says that iCal now has a week view for iPhone but after updating last weekend, I don't see any week view--just List, Day and Month..How do I get the week view?

    ios 5 Update New Features says that calendar now has a week view but after updating my iPhone 4 last weekend, I don't see any week view for iCal--just List, Day and Month as in the past. Is the weekly view available for iCal and if so, how do I access it?

    Rotate your phone to landscape.

  • New Features and Improvements for CS6

    IMPORTANT:
    By default, Photoshop comes with the Proofing Colors (Cmd/Ctrl+Y) activated and set to CMYK. Adobe must warn about that, because I was editing a large amount of pictures for work and I was doing it under that color profile/work space.
    LAYERS PANEL:
    Layer Adjustments:
    Solid Color: visual feedback in real time.
    Gradient: IDEM as above.
    Pattern: IDEM as above.
    Gradient Map: IDEM as above.
    Gradient Editor: IDEM as above.
    Opacity and Fill: IDEM as above.
    Curves and Levels: Ability to load alfa channels. This way, the adjustments made on the alfa channel won't be destructive.
    CHANNELS PANEL:
    Channel Luminosity Selection:
    Ability to add and subtract from the selection.
    Ability to designate an area to be selected.
    For point 1, by using the shortcut Cmd+Alt+[number] the luminosity of a channel is loaded as selection. With Cmd+Alt+Shift+[number], the selection grows. But there is no way to subtract from selection (unless by clicking with the mouse on the channel's thumbnail). I think that can be solved by using Cmd+Alt+Shift+[- or +] in order to subtract or add from selection.
    Point 2 maybe even more important than point 1, because it allows selecting a designated area by the user, instead of the default luminosity selection, which ranges from 50% of the mid tones to the highlights (or shadows, if the selection is inverted). The user should be allowed to select the starting and finishing points of the luminosity selection.
    I thought 2 ways for solving these issues (and making it more intuitive and faster):
    A) By using the Histogram Panel, by dragging and highlighting an area on it, that it should load the selected luminosity pixels as a selection, as shown in figure 1:
      figure 1
    So the result of doing that will be a selection based on the area of the histogram that have been highlighted.
    B) By creating a new Adjustment Layer:
    It can be based in the same structure of the HUE Adjustment Layer, like figure 2 shows:
    Figure 2
    Or it can be this way (much better). Figure 3:
    Figure 3
    The selection can also be controlled by using the Click and Drag as suggested in the figure 1, as shown in the figure 4:
    Figure 4
    The overlaid highlighting over the histogram can be functional or just a mere graphic representation of the Range and Fade Selector. The "Fading" areas should be also be draggable in order to increase smooth the selection. However, the smoothing can be much better done with the Refining Selection tool and it can be ignored from this new tool.
    In any of these cases, the adjustments should give real time feedback when growing or shrinking selection; we must see the selection going bigger or smaller and also, the highlighted area should be draggable as well.
    TOOLS PANEL:
    Brush: detect edges while painting on masks (for manual mask refining. It would work similar to the Replace Color Brush, but only for masks and alfa channels). It also needs a shortcut to set the opacity.
    Dodge & Burn: Protect Tones should be allowed when painting on masks or alfa channels (for manual mask refining). D&B can also use edge detection as well.
    FILTERS:
    Some of them, like the ones involving Blur or the High-Pass and the Unsharp Mask filter, should work in real time (these ones, at the least).
    It can also added a Particle Generator Filter.
    It would be really nice having the ability to create particles such as dust, fog, rain, snow, etc in a more realistic manner than just the scattering function from the Brush Palette, or by mixing different filters with different blends. The Particle Generator should have an slider to control the depth of field, so it will give a feeling of depth and also, a way to load masks, so that way, the particles can exists before the image and also, behind. It would be great for creating a nice feeling of depth (kind of a bokeh effect).
    I've been playing with After Effect few times, and the way to create shapes and forms from nothing is the way of easier than in Photoshop.
    TIME LINE:
    I think it's time give dynamism the filters applied to a movie clip, and also, dynamics to the fade effects, like it happens in After Effects by adding Bezier Curves.
    HISTOGRAM:
    It should be possible to zoom in into the histogram, for a more precise feedback and analysis of the image tonal values.
    ADDITIONAL FEATURES:
    The fade tool should work in real time.
    Loupe/Magnificator View:
    This is very useful when it comes to edit and image in detail, with a lot of zoom, like 3200%. Unfortunately, Photoshop doesn't provide a real time feedback in an additional window, such as the Window/Arrange/New Window For […].
    It would be really useful having a window showing the image at fit on the screen while working on the other window at 100% or 3200% of zoom, but in real time. This way, you can see if you're doing a good job on the pixels or, if you're overdoing it.
    It happens that, when working with big images at 100% of the image size (or more), the brain cannot figure out how is looking the whole image, so having a realtime feedback in the other window would help a lot for detailled work.
    And why not, ading the same real time structure descrived above but to the Navigator, for faster and lighter use of the hardware capabilities. Probably, adding a check box to the navigator that blocks it to a given zoom, so when zooming into the image in the navigator, the image shown in the window isn't magnified too.
    Give me a chance to show you some examples of what I have done by improvising particles and fog about 5 years ago:
    http://mart1980.deviantart.com/gallery/5027033#/d1m119x
    And what I did 7 years ago by manually, selecting different shades of gray and using just Levels for 8 hours (which coule be done faster and easier with another tool I thought, which I will post later):
    I cannot post examples of the other features I'm suggesting because there are not such new features yet (I would have to create an hipothetical enviroment, but I think, you can fiure it out in your mind).
    Unfortunately, I don't know programing, even though, I tried something with Filter Factory, achieving good results, but that pluging consumes too much resources and/or is bad designed/have not the right tools for certain things.
    Hope this post is enough worthy of the Adobe's attention.
    Thanks,
    س

    This is a poorly explained reason about why is so important having a loupe in Photoshop. I've not also, used the best example, but I will. This belongs to the ADDITIONAL FEATURES: Loupe/Magnificator View:. Also, I will try to make my english clrearer, but here it goes:

  • What is the significance of the new feature in discussion forum as Kudos and other things recently started?

    Hi,
    I just want to know about the significance of new features started in Forums as KUDOS.
    What to do with this and how it help someone in getting solution for his query.
    Thanks & Regards,
    Samriddh Sarbalhi
    Solved!
    Go to Solution.

    Take a look at these threads:
    http://forums.ni.com/ni/board/message?board.id=130&thread.id=5309
    http://forums.ni.com/ni/board/message?board.id=130&view=by_date_ascending&message.id=5492#M5492

  • I recently bought a new macbook pro and set it up using the migration assistant and my mac mini.  I can't get the text message forwarding feature to work with both computers.

    I recently bought a new macbook pro and set it up using the migration assistant from my mac mini.  I can't get the text message forwarding feature to work with both computers.  It keeps saying that I only have 2 devices setup, my iPad and my macbook pro.  When I mess with the setting on my mac mini, it goes from saying that that is one of the devices to my macbook pro being the 2nd device.  I think that something happened as a result of my using the migration assistant and now it thinks that my macbook pro and my mac mini are one and the same computer.  Any ideas?

    Thanks, Sig.
    The old computer is a 2.6 Ghz Intel Core 2 Duo
    The new one is a 2.3 GHz intel core i7
    In going over this, thanks to "tallking it out" with you, I did discover the Text Edit problem.  Because I've still been unable to get the new computer text size (fonts or whatever) to match the old computer, I did not notice that the curser is now different--the line midway down the curser has to be placed on the line I am working upon, otherwise the edits go elsewhere on the page.  Now, with a bit of difficulty, I am able to get Text Edit to work correctly.
    If you have any ideas as to why my menu bar and Text Edit type are still so slow, I'd love to have them. 
    (I went through the process you suggested earlier, re my Trackpad preferences, and found no improvement.)

  • New Features for UPK with PeopleTools 8.53 and PeopleSoft 9.2

    Hello,
    does anyone know, where I can find information about the effect or new features PeopleTools 8.53 and PeopleSoft 9.2 have especially for UPK 11.0.0?
    I've searched a lot, but couldn't find any information of new features or changed integration of UPK in PeopleSoft according to the Upgrade.
    Thanks for your help.

    Support for PeopleTools 8.53 and PeopleSoft 9.2 are planned for UPK 11.1 ESP 2.
    Best regards,
    Marc

Maybe you are looking for